Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # dhcpd.conf
- #
- # Sample configuration file for ISC dhcpd
- #
- # option definitions common to all supported networks...
- option domain-name "shxd.cx";
- option domain-name-servers 209.244.0.3, 74.82.42.42, 8.8.8.8;
- default-lease-time 21600;
- max-lease-time 43200;
- # Use this to enble / disable dynamic dns updates globally.
- ddns-update-style interim;
- # If this DHCP server is the official DHCP server for the local
- # network, the authoritative directive should be uncommented.
- #authoritative;
- # Use this to send dhcp log messages to a different log file (you also
- # have to hack syslog.conf to complete the redirection).
- log-facility local7;
- subnet 192.168.1.0 netmask 255.255.255.0 {
- option routers 192.168.1.1;
- option subnet-mask 255.255.255.0;
- option domain-name "shxd.cx";
- option domain-name-servers 192.168.1.1;
- option time-offset -18000; # Pacific Standard Time
- range dynamic-bootp 192.168.1.100 192.168.1.109;
- next-server 192.168.1.1;
- ignore client-updates;
- filename "lpxelinux.0";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement