diff --git a/db.master.tilde b/db.master.tilde new file mode 100644 index 0000000..69162d3 --- /dev/null +++ b/db.master.tilde @@ -0,0 +1,16 @@ +; +; BIND data file for master.tilde +; +$TTL 604802 +@ IN SOA master.tilde. root.master.tilde. ( + 2 ; Serial + 604800 ; Refresh + 86400 ; Retry + 2419200 ; Expire + 604800 ) ; Negative Cache TTL + IN A 192.168.1.10 +; +@ IN NS master.tilde. +@ IN A 192.168.1.10 +@ IN AAAA ::1 +ns IN A 192.168.1.10 diff --git a/db.team.tilde b/db.team.tilde new file mode 100644 index 0000000..ef0581b --- /dev/null +++ b/db.team.tilde @@ -0,0 +1,18 @@ +; +; BIND data file for team.tilde +; +$TTL 604802 +@ IN SOA team.tilde. root.team.tilde. ( + 1 ; Serial + 604800 ; Refresh + 86400 ; Retry + 2419200 ; Expire + 604800 ) ; Negative Cache TTL + IN A 195.201.242.48 +; +@ IN NS master.tilde. +@ IN A 195.201.242.48 +@ IN AAAA 2a01:4f8:231:24f::2 +ns IN A 139.59.215.24 +mail IN A 95.201.242.48 +@ IN AAAA 2a01:4f8:231:24f::2 diff --git a/named.conf.local b/named.conf.local new file mode 100644 index 0000000..f18f8fe --- /dev/null +++ b/named.conf.local @@ -0,0 +1,21 @@ +// +// Do any local configuration here +// + +// Consider adding the 1918 zones here, if they are not used in your +// organization +//include "/etc/bind/zones.rfc1918"; +zone "example.com" { + type master; + file "/etc/bind/db.example.com"; +}; + +zone "master.tilde" { + type master; + file "/etc/bind/db.master.tilde"; +}; + +zone "team.tilde" { + type master; + file "/etc/bind/db.team.tilde"; +};