File Name : /etc/dhcpd.conf
This Is a very standard dhcpd configuration file.
Included how to fix a IP address for a system and
added a range of domain name server.
************************* /etc/dhcpd.conf **********************
ddns-updates on;
ddns-update-style ad-hoc;
option domain-name-servers 10.0.0.1, 202.188.0.133, 202.188.1.5;
option subnet-mask 255.255.255.0;
option routers 10.0.0.1;
# Local LAN
subnet 10.0.0.0 netmask 255.255.255.0 {
ddns-updates on;
range 10.0.0.60 10.0.0.150;
}
# Hammer
host ne-is-lclloc {
ddns-updates on;
hardware ethernet 00:50:8b:aa:f3:24;
fixed-address 10.0.0.50;
}
host ne-is-lclloc2 {
ddns-updates on;
hardware ethernet 00:40:96:38:7d:42;
fixed-address 10.0.0.51;
}
# HP DEV
host cvs {
hardware ethernet 00:30:6e:28:5c:3f;
fixed-address 10.0.0.9;
}
************************* EOF ******************************