mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-23 03:20:42 +08:00
add ipv6 rdns
This commit is contained in:
parent
f156b900cb
commit
9e4eb423d1
2 changed files with 19 additions and 0 deletions
13
dns/db.fd10.127
Normal file
13
dns/db.fd10.127
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
; NeoNetwork DNS Record
|
||||||
|
$TTL 604800
|
||||||
|
@ IN SOA NeoPDP-11.neo. root.neo. (
|
||||||
|
4096 ; Serial
|
||||||
|
604800 ; Refresh
|
||||||
|
86400 ; Retry
|
||||||
|
2419200 ; Expire
|
||||||
|
604800 ) ; Negative Cache TTL
|
||||||
|
;
|
||||||
|
@ IN NS NeoPDP-11.neo.
|
||||||
|
|
||||||
|
; DELEGATED ZONES
|
||||||
|
3.5.0.0 IN NS ns1.jerry.neo.
|
|
@ -56,6 +56,12 @@ zone "127.10.in-addr.arpa" IN {
|
||||||
forward only;
|
forward only;
|
||||||
forwarders { 10.127.255.1; };
|
forwarders { 10.127.255.1; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zone "7.2.1.0.0.1.d.f.ip6.arpa." IN {
|
||||||
|
type forward;
|
||||||
|
forward only;
|
||||||
|
forwarders { 10.127.255.1; };
|
||||||
|
};
|
||||||
//zone "example.org" IN {
|
//zone "example.org" IN {
|
||||||
// type slave;
|
// type slave;
|
||||||
// file "example.zone";
|
// file "example.zone";
|
||||||
|
|
Loading…
Reference in a new issue