Pseudo second level domain DNSSEC: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „*cat /etc/bind/named.conf.options <pre> options { directory "/var/cache/bind"; forwarders { 192.168.178.88; }; empty-zones-enable no; dnssec-validat…“)
 
Zeile 24: Zeile 24:
 
};
 
};
 
</pre>
 
</pre>
*cat it113.int 113.88.10.in-addr.arpa
+
*cat it113.int  
 
<pre>
 
<pre>
  
Zeile 40: Zeile 40:
 
</pre>
 
</pre>
  
*cat it113.int 113.88.10.in-addr.arpa  
+
*cat 113.88.10.in-addr.arpa  
 
<pre>
 
<pre>
  

Version vom 10. März 2025, 19:46 Uhr

  • cat /etc/bind/named.conf.options
options {
	directory "/var/cache/bind";
	 forwarders {
	 	192.168.178.88;
	 };
	empty-zones-enable no;
	dnssec-validation auto;
	listen-on-v6 { none; };
};

*cat /etc/bind/named.conf.local 
zone it113.int IN {
     type master;
     file "it113.int";
};

zone 113.88.10.in-addr.arpa IN {
     type master;
     file "113.88.10.in-addr.arpa";
};
  • cat it113.int

$TTL 300
@ 		  IN SOA  ns technik.xinux.de. (
                        2011090204  ;
                        14400   ;
                        3600    ;
                        3600000 ;
                        86400   ;
                    )
        IN NS      ns
ns      IN A       10.88.113.2
www     IN A       10.88.113.22
  • cat 113.88.10.in-addr.arpa

$TTL 300
@ 		  IN SOA  ns.it113.int. technik.xinux.de. (
                        2011090204  ;
                        14400   ;
                        3600    ;
                        3600000 ;
                        86400   ;
                    )
        IN NS      ns.it113.int.
2	IN	PTR ns.it113.int.
22	IN	PTR www.it113.int.