Advertisement
Sergio_Istea

declaracion de zona y soa example.proxy

Jun 11th, 2024
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ###### named.conf.local
  2.  
  3. zone "example.proxy" {
  4. type master;
  5. file "/etc/bind/db.example.proxy";
  6. };
  7.  
  8. ##### db.example.proxy
  9.  
  10. $TTL 1D
  11. $ORIGIN example.proxy.
  12.  
  13. @ IN SOA ns1.example.proxy. admin.example.proxy. (
  14. 1 ; Serial
  15. 8H ; Refresh
  16. 2H ; Retry
  17. 4W ; Expire
  18. 1D ; Minimum TTL
  19. )
  20.  
  21. @ IN NS ns1.example.proxy.
  22.  
  23. ; 192.168.11.220 direccion IP del servidor web
  24. @ IN A 192.168.11.220
  25.  
  26. ; Dirección IP del servidor DNS
  27. ns1 IN A 192.168.11.210
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement