Updated DNS files

This commit is contained in:
deepend 2025-05-09 20:25:02 -06:00
parent d54705f091
commit e271341f92
4 changed files with 40 additions and 2 deletions

View File

@ -10,5 +10,5 @@ $TTL 604800
@ IN NS ns1.master.tilde.
@ IN NS ns2.master.tilde.
www IN CNAME nix.tilde
@ IN A
* IN A
@ IN A 162.198.140.77
* IN A 162.198.140.77

14
db.the.tilde Normal file
View File

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

14
db.www.tilde Normal file
View File

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

View File

@ -275,3 +275,13 @@ zone "nix.tilde" {
file "/etc/bind/db.nix.tilde";
};
zone "the.tilde" {
type master;
file "/etc/bind/db.the.tilde";
};
zone "www.tilde" {
type master;
file "/etc/bind/db.www.tilde";
};