Recently we upgraded from a windows 2003 DHCP server to a Ubuntu 10.04 DHCP3-server.
The problem I am faced with now is that my windows 7 clients are now getting IPv6 ip address along with the IPv4 address. This is creating a AAAA record in our windows DNS server. But when I switch back to the Windows DHCP server the address doesn't get assigned and no AAAA record is created in the DNS server.
I have set ddns-update-style none; and ignore client-updates
I can disable IPv6 on the computer it self but I would like to find out what the setting that will make the DHCP NOT assign a IPv6 address to w7 clients or disable auto-config for IPv6 on w7 pcs.
Thanks.
authoritative;
ddns-update-style none;
log-facility local7;
ignore client-updates;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.50 192.168.1.58;
default-lease-time 86400;
max-lease-time 86400;
option routers 192.168.1.1;
option ip-forwarding off;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.225;
option domain-name-servers 192.168.1.2, 192.168.1.3;
option domain-name "my.domain";
}
host host1 {
hardware ethernet FF:FF:FF:FF:FF;
fixed-address 192.168.1.50;
}
host host2 {
hardware ethernet AA:AA:AA:AA:AA;
fixed-address 192.168.1.51;
}
Cheers!

-4option when starting it? – John S Gruber Aug 13 '12 at 16:36