I want to group phones so that some point to one sipxecs and others
point to others.  I tried this trick but phones in the "work-phones"
group are not getting the right information, anyone see my mistake or
suggest an alternative config?  dhcpd debug doesn't provide any useful
info.

(I changed the real mac address and ip address to protect the innocent)


default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option domain-name-servers 192.168.1.2;
option domain-name "hubler.us";
option time-servers pool.ntp.org;

class "work-phones" {
  match pick-first-value (option dhcp-client-identifier, hardware);
}

subclass "work-phones" 00:04:f2:55:55:55;

subnet 192.168.1.0 netmask 255.255.255.0 {
   pool {
     allow members of "work-phones";
     option tftp-server-name "5.5.5.5";
     range 192.168.1.10 192.168.1.19;
   }
   pool {
     deny members of "work-phones";
     option tftp-server-name "192.168.1.2";
     range 192.168.1.20 192.168.1.200;
   }
}
_______________________________________________
sipx-users mailing list
[email protected]
List Archive: http://list.sipfoundry.org/archive/sipx-users/

Reply via email to