Advertisement
alexeyshmalko

Untitled

Dec 25th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. # dhcpd.conf
  2.  
  3. # option definitions common to all supported networks...
  4. option domain-name "example.org";
  5. option domain-name-servers 10.18.49.102;
  6.  
  7. default-lease-time 300;
  8. max-lease-time 7200;
  9.  
  10. # This is a very basic subnet declaration.
  11. subnet 10.18.51.0 netmask 255.255.255.0 {
  12. range 10.18.51.90 10.18.51.94;
  13. range 10.18.51.98;
  14. option routers 10.18.51.1;
  15. option domain-name-servers 10.18.49.102;
  16. }
  17.  
  18. host larry {
  19. fixed-address 10.18.51.99;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement