On Monday 08 May 2006 08:31, Chad Osmond wrote:
> This really only seems useful if your VLANs change a lot, there is no
> way that I have found to tell the phone to use a specific VLAN right
> away from DHCP.
This was discussed here recently, and you gave us the answer from Tier 2
Polycom support on April 13: set DHCP option 132.
With isc-dhcpd you should be able to do something like this:
option option-132 code 132 = unsigned integer 8;
pool {
option option-132 1;
option tftp-server-name "192.168.1.1";
max-lease-time 28800;
range 192.168.1.80 192.168.1.99;
allow members of "phones";
}
Does this not work? (it may be 16-bit, but I kind of doubt it.) I don't have
VLANs on my network so I haven't tested it.
-A.