tuxmartin

ISC DHCP config

Jun 11th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $ cat /etc/dhcp/dhcpd.conf
  2.  
  3. default-lease-time 3600;
  4. max-lease-time 7200;
  5. subnet 192.168.2.0 netmask 255.255.255.0 {
  6. option subnet-mask 255.255.255.0;
  7. option domain-name-servers 8.8.8.8, 8.8.4.4;
  8. option domain-name "lan";
  9. option broadcast-address 192.168.2.255;
  10. option routers 192.168.2.1;
  11. range 192.168.2.10 192.168.2.250;
  12. ddns-update-style none;
  13. authoritative;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment