Friday, May 29, 2009

Sample dhcpd.conf file

Here a sample configuration file for DHCP.
Hope it can be helpful.

Sample dhcpd.conf:
{
ddns-update-style none;
option domain-name "moritzlawfirm";
option domain-name-servers 192.168.1.254;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
subnet 192.168.1.0 netmask 255.255.255.0
{ range 192.168.1.1 192.168.1.20;
option routers 192.168.1.254;
}
host vpc01
{
hardware ethernet 00:11:11:6d:ee:97;
fixed-address 10.1.1.99;
}
}

No comments:

Post a Comment