Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. default-lease-time 600;
  2. max-lease-time 7200;
  3. ddns-update-style none;
  4.  
  5. # If this DHCP server is the official DHCP server for the local
  6. # network, the authoritative directive should be uncommented.
  7. authoritative;
  8.  
  9. log-facility local7;
  10.  
  11. subnet 192.168.2.0 netmask 255.255.255.0 {
  12. range 192.168.2.50 192.168.2.150;
  13. option broadcast-address 192.168.2.255;
  14. option routers 192.168.2.1;
  15. option subnet-mask 255.255.255.0;
  16. default-lease-time 600;
  17. max-lease-time 7200;
  18. option domain-name "fibble.local";
  19. option domain-name-servers 208.67.222.222, 208.67.220.220;
  20. interface eth0;
  21. }
  22. # give your network printer and file server a static IP addresses
  23. host printer1 {
  24. hardware ethernet 08:00:2b:4c:59:23;
  25. fixed-address 192.168.2.45;
  26. }
  27. host fileserver {
  28. hardware ethernet 12:20:cb:3c:32:4d;
  29. fixed-address 192.168.2.40;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement