Advertisement
sergio_educacionit

Laboratorio: proxy reverso 'bind'

Aug 1st, 2024 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ### Archivo 'named.conf.local'
  2.  
  3. zone "laboratorio.proxy" {
  4. type master;
  5. file "/etc/bind/db.laboratorio.proxy";
  6. };
  7.  
  8. ### Archivo 'db.laboratorio.proxy'
  9.  
  10. $TTL 604800
  11. $ORIGIN laboratorio.proxy.
  12. ; admin.laboratorio.proxy. = admin@bind.lan
  13. @ IN SOA ns.bind.lan. admin.bind.lan. (
  14. 1034231 ; Serial
  15. 3600 ; Refresh 1 hora
  16. 1800 ; Retry 30 minutos
  17. 900 ; Expire 15 minutos
  18. 604800 ) ; Negative Cache TTL
  19. ;
  20.  
  21. @ IN NS ns.bind.lan.
  22.  
  23. ; servidor web apache
  24. @ IN A 192.168.43.155
  25.  
  26. www IN CNAME laboratorio.proxy.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement