To configure DHCP option 43:
[root@localhost ~]# vim /etc/dhcpd.conf authoritative; ddns-update-style interim; ignore client-updates; option space HAP; option HAP.HWC code 1 = text; subnet 10.100.1.0 netmask 255.255.255.0 { range 10.100.1.10 10.100.1.254; option subnet-mask 255.255.255.0; option slp-directory-agent false 10.1.100.11; option domain-name-servers 10.100.1.2; option domain-name "bpmgmt.com"; option routers 10.100.1.1; default-lease-time 40000; } … subnet 10.100.4.0 netmask 255.255.255.0 { range 10.100.4.100 10.100.4.254; option subnet-mask 255.255.255.0; option slp-directory-agent false 10.100.4.46, 10.100.4.47; option domain-name-servers 10.100.1.2; option domain-name "bpmgmt.com"; option routers 10.100.4.1; default-lease-time 40000; Vendor Class for ExtremeWireless APs: class "HAP" { match option vendor-class-identifier; } subclass "HAP" "AP3935" { vendor-option-space HAP; option HAP.HWC "10.100.2.36, 10.100.2.22"; }
[root@localhost ~]# /etc/init.d/dhcpd restart