Hie all,
I've installed a dhcp server, isc-dhcp3-server on my FBSD 6.2 box.
I have configured it as specified i the handbook and it works fine with
a freebsd or linux client.
but with a Windows client or a Mac client, it does not work..
i search in the man of dhcpd.conf but nothing about windows or mac...
here is my dhcpd.conf:
option domain-name "mydomain.com";
option domain-name-servers ns1.mydomain.com, ns2.mydomain.com;
option subnet-mask 255.255.255.0;
default-lease-time 7200;
max-lease-time 7200;
authoritative;
ddns-update-style interim;
ddns-updates on;
ignore client-updates;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.10 192.168.0.30;
option routers ns1.mydomain.com;
option broadcast-address 192.168.0.255;
}
host joe {
hardware ethernet 00:17:31:c1:8c:f0;
fixed-address 192.168.0.11;
}
key rndc-key {
algorithm hmac-md5;
secret "[...............................]";
};
zone mydomain.com. {
primary 127.0.0.1; # Adresse du serveur de noms primaire
key rndc-key;
}
zone 0.168.192.in-addr.arpa. {
primary 127.0.0.1; # Adresse du serveur de noms primaire
key rndc-key;
}
Does anyone know how i can fix it?
Thank in advance
--
Mike