Can you post a copy of your /etc/dhcpd.conf ?
Hi All,
I've set up a DHCP Daemon with failover.
Everything is working fine, except that the server is leasing IPs with a 10 minutes expiration time.
My config in both primary and secondary servers has:
default-lease-time 604800;
max-lease-time 846000;
Any clues?
TKS!
Can you post a copy of your /etc/dhcpd.conf ?
Its better to regret something you have done than to regret something you havent done :P
No well mine looks like this and works well - i have 3 interfaces eth0 eth1 and eth2
192.168.0.0 - eth0
192.168.1.0 -eth1
192.168.2.0-eth2
ddns-update-style interim;
subnet 192.168.0.0 netmask 255.255.255.0 {
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name "beer.hic";
option domain-name-servers 203.220.6.130, 139.130.4.4;
range 192.168.0.4 192.168.0.200;
}
subnet 192.168.1.0 netmask 255.255.255.0 {
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option domain-name "beer.hic";
option domain-name-servers 203.220.6.130, 139.130.4.4;
range 192.168.1.4 192.168.1.200;
}
subnet 192.168.2.0 netmask 255.255.255.0{
option routers 192.168.2.1;
option subnet-mask 255.255.255.0;
option domain-name "beer.hic";
option domain-name-servers 203.220.6.130, 139.130.4.4;
range 192.168.2.4 192.168.2.200;
hope it helps
why are you specifying a lease time anyway?
is it essential?
Its better to regret something you have done than to regret something you havent done :P
Bookmarks