Advertisement
Guest User

Untitled

a guest
Feb 7th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. #
  2. # Sample configuration file for ISC dhcpd for Debian
  3.  
  4.  
  5. # The ddns-updates-style parameter controls whether or not the server will
  6. # attempt to do a DNS update when a lease is confirmed. We default to the
  7. # behavior of the version 2 packages ('none', since DHCP v2 didn't
  8. # have support for DDNS.)
  9. ddns-update-style none;
  10.  
  11. # If this DHCP server is the official DHCP server for the local
  12. # network, the authoritative directive should be uncommented.
  13. authoritative;
  14.  
  15. # Use this to send dhcp log messages to a different log file (you also
  16. # have to hack syslog.conf to complete the redirection).
  17. log-facility local7;
  18.  
  19.  
  20. #setting yp the ip and domain names
  21. subnet 192.168.0.0 netmask 255.255.255.0 {
  22. range 192.168.0.10 192.168.0.100;
  23. option domain-name-servers 192.168.0.1;
  24. option domain-name "Anima";
  25. #option netbios-name-servers 192.168.0.1;
  26. option routers 192.168.0.1;
  27. option subnet-mask 255.255.255.0;
  28. option broadcast-address 192.168.0.255;
  29. default-lease-time 86400;
  30. max-lease-time 676800;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement