Advertisement
Guest User

Untitled

a guest
Jun 28th, 2012
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # Use this to send dhcp log messages to a different log file (you also
  2. # have to hack syslog.conf to complete the redirection).
  3. log-facility local7;
  4. ddns-update-style interim;
  5. option dhcp-server-identifier 10.0.0.1;
  6.  
  7. default-lease-time 600;
  8. max-lease-time 7200;
  9.  
  10.  
  11. subnet 10.0.0.0 netmask 255.255.255.0 {
  12. authoritative;
  13. option domain-name "brilliantagent.com";
  14. option domain-name-servers 10.0.0.1, 68.238.112.12;
  15. option broadcast-address 10.0.0.255;
  16. option routers 10.0.0.254;
  17. option subnet-mask 255.255.255.0;
  18. range 10.0.0.41 10.0.0.150;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement