Advertisement
sxiii

CentOS DHCPD

Feb 17th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. # A slightly different configuration for an internal subnet.
  2. subnet 192.168.1.0 netmask 255.255.255.0 {
  3. range 192.168.1.20 192.168.1.30;
  4. option domain-name-servers server.unixmen.local;
  5. option domain-name "unixmen.local";
  6. option routers 192.168.1.1;
  7. option broadcast-address 192.168.1.255;
  8. default-lease-time 600;
  9. max-lease-time 7200;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement