Re: [Kea-users] Ignore DROP Client Class for Reservation

2025-09-15 Thread Peter Davies
Hi Isaac,    You could try the following:         "client-classes": [ {            "name": "workstations_oui",            "test": "substring(pkt4.mac, 0, 3) == 0xc46516" }, {            "name": "DROP",            "test": "member('workstations_oui') and (pkt4.giaddr==192.168.0.1 ) and not member

[Kea-users] Ignore DROP Client Class for Reservation

2025-09-15 Thread Isaac Brummel
Hello, I'm trying to recreate a feature of isc-dhcpd that I use in Kea. Specifically it is to deny leases for clients that have a specific OUI. In the "pool {}" block I have "deny members of "workstations";" to accomplish this. With Kea I came up with the following combination of client classes