Advertisement
Guest User

Untitled

a guest
Dec 8th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #
  2. # Sample configuration file for ISC dhcpd for Debian
  3. #
  4. # $Id: dhcpd.conf,v 1.4.2.2 2002/07/10 03:50:33 peloy Exp $
  5. #
  6. #
  7. allow bootp;
  8.  
  9. # this server is authoritative for the subnets it serves
  10. authoritative;
  11.  
  12. # option definitions common to all supported networks...
  13. option domain-name "photojim.prv";
  14. option domain-name-servers adelaide.photojim.prv, dalby.photojim.prv, toowoomba.photojim.prv, illawong.photojim.prv;
  15.  
  16. option subnet-mask 255.255.255.128;
  17. default-lease-time 604800;
  18. max-lease-time 604800;
  19.  
  20. subnet 192.168.223.0 netmask 255.255.255.128 {
  21. range 192.168.223.113 192.168.223.126;
  22. option routers 192.168.223.26;
  23. option subnet-mask 255.255.255.128;
  24. option broadcast-address 192.168.223.127;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement