Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. authoritative;
  2. ddns-update-style none;
  3. always-broadcast on;
  4. deny bootp;
  5.  
  6. subnet 192.168.1.0 netmask 255.255.255.0 {
  7. range 192.168.1.100 192.168.1.199;
  8. option domain-name-servers 192.168.1.1;
  9. option domain-name "myserver.com";
  10. option routers 192.168.1.1, 192.168.2.1;
  11. option broadcast-address 192.168.1.255;
  12. }
  13.  
  14. subnet 192.168.2.0 netmask 255.255.255.0 {
  15. range 192.168.2.100 192.168.2.199;
  16. option domain-name-servers 192.168.2.1;
  17. option domain-name "myserver.com";
  18. option routers 192.168.2.1, 192.168.1.1;
  19. option broadcast-address 192.168.2.255;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement