Monday, January 30, 2012

DHCP Server (Vista Compatible)

ref: http://www.russellconsultants.com/information/how-to-mainmenu-15/21-networking/43-dhcp-and-windows-vista.html

this is my own version. this setting like normal wireless router and works on my windows vistaa.


option domain-name "server.domain.com";
option domain-name-servers 8.8.8.8;
option netbios-name-servers 8.8.8.8;
option subnet-mask 255.255.255.0;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style ad-hoc; ## Centos needs this
subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.150 192.168.1.252;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.1;
}

Other reading:
http://www.mail-archive.com/gnhlug-discuss@mail.gnhlug.org/msg27563.html
and: http://www.bravecobra.com/2008/6/18/windows-vista-not-accepting-ip-address-from-a-linux-dhcpd/

No comments:

Related Posts Plugin for WordPress, Blogger...