Gabri_RDiaz

DHCP ZONES NO DDNS

Mar 13th, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.41 KB | None | 0 0
  1. option domain-name "ayto.xove";
  2. option domain-name-servers 172.16.112.21;
  3.  
  4. default-lease-time 600;
  5. max-lease-time 7200;
  6.  
  7. authoritative;
  8.  
  9. ddns-update-style none;
  10.  
  11. subnet 172.16.112.0 netmask 255.255.255.0 {
  12.         range 172.16.112.51 172.16.112.100;
  13.         option routers 172.16.112.1;
  14. }
  15.  
  16. zone ayto.xove. {
  17.         primary 127.0.0.1;
  18. }
  19.  
  20. zone 112.16.172.in-addr.arpa. {
  21.         primary 127.0.0.1;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment