First commit, with zones

This commit is contained in:
root 2018-11-22 02:47:08 +00:00
parent 18f962bdfa
commit 4f0b3fe1f4
3 changed files with 55 additions and 0 deletions

16
db.master.tilde Normal file
View File

@ -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

18
db.team.tilde Normal file
View File

@ -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

21
named.conf.local Normal file
View File

@ -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";
};