DHCP Server

Berikut langkah-langkah membuat DHCP server di Centos

#yum install dhcp

#vim /etc/dhcpd.conf

ddns-update-style interim;
ignore client-updates;

subnet 192.168.16.0 netmask 255.255.255.0 {
option routers                  192.168.16.1;
option subnet-mask              255.255.255.0;
option domain-name-servers      192.168.16.100;

range dynamic-bootp 192.168.16.151 192.168.16.175;
default-lease-time 21600;
max-lease-time 43200;

}
#chkconfig --level 234 dhcp on

#service dhcpd start

#service dhcpd status