Advertisement
Sergio_Istea

zona dns y resgistro soa balancer.proxy

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