Friday, December 19, 2014

DHCP configuration file ( dhcpd.conf)

#
# DHCP Server Configuration file.
#   see /usr/share/doc/dhcp*/dhcpd.conf.sample
#   see 'man 5 dhcpd.conf'
#

ddns-update-style ad-hoc;
ddns-update-style interim;

#allow booting;
#allow bootp;
#ingnore client-updates;

default-lease-time 600;
max-lease-time 7200;

#log-fecility local7;

subnet 192.168.0.0 netmask 255.255.255.0 {
option broadcast-address 192.168.0.255;
range 192.168.0.10 192.168.0.100;
option domain-name-servers 218.248.255.145 , 14.139.5.5 , 8.8.8.8 , 8.8.4.4;
option routers 192.168.0.1;
default-lease-time 600;
max-lease-time 7200;
}
}

No comments: