DNS Ubuntu Revisado Completo
En el primario instalar bind9 sudo apt update -y && sudo apt upgrade -y sudo apt install bind9 sudo apt install gedit sudo gedit /etc/bind/named.conf.local zone "aulaSMR113.local" { type master; file "/etc/bind/db.aulaSMR113.local"; allow-transfer {192.168.32.141;}; }; zone "32.168.192.in-addr.arpa" { type master; file "/etc/bind/db.192.168.32"; allow-transfer {192.168.32.141;}; }; sudo systemctl restart named sudo gedit /etc/bind/db.aulaSMR113.local $TTL 1D @ IN SOA ns.aulaSMR113.local. alumnop.aulaSMR113.local. ( 1 ; serial 604800 ; refresh 86400 ; retry 2419200 ; expiration 604800 ; TTL negative cache ) ; Registros NS (servidores de nombres) @ IN NS ns.aulaSMR113.local. ; Registros A ns IN A 192.168.32.140 ai1pc100 IN A 192.168.32.100 ai1pc101 IN A 192.168.32.101 alumnop ...
