DHCP for Linux: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Created page with "<pre> yum -y install dhcp chkconfig dhcpd on </pre> <pre> vi /etc/dhcp/dhcpd.conf </pre> <pre> subnet 10.17.1.0 netmask 255.255.255.0 { default-lease-time ..." |
No edit summary |
||
Line 9: | Line 9: | ||
<pre> | <pre> | ||
option tftp150 code 150 = string; | |||
option tftp66 code 66 = string; | |||
subnet 10.17.1.0 netmask 255.255.255.0 | subnet 10.17.1.0 netmask 255.255.255.0 | ||
{ | { | ||
Line 14: | Line 17: | ||
max-lease-time 86400; | max-lease-time 86400; | ||
option tftp66 | option tftp66 "10.17.1.5"; | ||
option routers 10.17.1.254; | option routers 10.17.1.254; | ||
Line 20: | Line 23: | ||
option domain-name "mydomain.com"; | option domain-name "mydomain.com"; | ||
option domain-name-servers | option domain-name-servers 10.17.1.254; | ||
option time-offset 36000; # Australian Eastern Standard Time in Seconds | option time-offset 36000; # Australian Eastern Standard Time in Seconds |
Revision as of 05:24, 7 November 2012
yum -y install dhcp chkconfig dhcpd on
vi /etc/dhcp/dhcpd.conf
option tftp150 code 150 = string; option tftp66 code 66 = string; subnet 10.17.1.0 netmask 255.255.255.0 { default-lease-time 86400; # Seconds, 86400 = 24 Hours max-lease-time 86400; option tftp66 "10.17.1.5"; option routers 10.17.1.254; option subnet-mask 255.255.255.0; option domain-name "mydomain.com"; option domain-name-servers 10.17.1.254; option time-offset 36000; # Australian Eastern Standard Time in Seconds range 10.17.1.101 10.17.1.150; }
The details of client devices with IP address will be entered into the file:
/var/lib/dhcpd/dhcpd.leases