Updated DNS files

This commit is contained in:
deepend 2024-04-07 18:00:01 -06:00
parent b50cda5b1f
commit 52ff1b1a1e
6 changed files with 95 additions and 0 deletions

14
db.a.tilde Normal file
View File

@ -0,0 +1,14 @@
; BIND data file for a.tilde
$TTL 604800
@ IN SOA ns1.master.tilde. root.a.tilde. (
2024040701 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns1.master.tilde.
@ IN NS ns2.master.tilde.
www IN CNAME a.tilde
@ IN A
* IN A

14
db.irc.tilde Normal file
View File

@ -0,0 +1,14 @@
; BIND data file for irc.tilde
$TTL 604800
@ IN SOA ns1.master.tilde. root.irc.tilde. (
2024040701 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns1.master.tilde.
@ IN NS ns2.master.tilde.
www IN CNAME irc.tilde
@ IN A
* IN A

14
db.ma.tilde Normal file
View File

@ -0,0 +1,14 @@
; BIND data file for ma.tilde
$TTL 604800
@ IN SOA ns1.master.tilde. root.ma.tilde. (
2024040701 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns1.master.tilde.
@ IN NS ns2.master.tilde.
www IN CNAME ma.tilde
@ IN A
* IN A

14
db.notifications.tilde Normal file
View File

@ -0,0 +1,14 @@
; BIND data file for notifications.tilde
$TTL 604800
@ IN SOA ns1.master.tilde. root.notifications.tilde. (
2024040701 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns1.master.tilde.
@ IN NS ns2.master.tilde.
www IN CNAME notifications.tilde
@ IN A
* IN A

14
db.uptime.tilde Normal file
View File

@ -0,0 +1,14 @@
; BIND data file for uptime.tilde
$TTL 604800
@ IN SOA ns1.master.tilde. root.uptime.tilde. (
2024040701 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS ns1.master.tilde.
@ IN NS ns2.master.tilde.
www IN CNAME uptime.tilde
@ IN A
* IN A

View File

@ -65,3 +65,28 @@ zone "dev.tilde" {
file "/etc/bind/db.dev.tilde";
};
zone "notifications.tilde" {
type master;
file "/etc/bind/db.notifications.tilde";
};
zone "uptime.tilde" {
type master;
file "/etc/bind/db.uptime.tilde";
};
zone "a.tilde" {
type master;
file "/etc/bind/db.a.tilde";
};
zone "irc.tilde" {
type master;
file "/etc/bind/db.irc.tilde";
};
zone "ma.tilde" {
type master;
file "/etc/bind/db.ma.tilde";
};