DHCP Server
DHCP Server
This server is used to allocate the IP ADDRESS dynamically for the hosts connected to this server
cd /usr/share/doc/dhcp-3.0.1/
cp dhcpd.conf.sample /etc/dhcpd.conf
vi /etc/dhcpd.conf
host station201 {
next-server station201.linux.com;
hardware ethernet 00:50:FC:2A:AB:9D;
fixed-address 192.168.0.201;
}
:wq
STEP 3: To enable the services
service dhcpd start/restart/reload
chkconfig dhcpd on