Compare commits
2 Commits
16027275ce
...
a08ac882c3
Author | SHA1 | Date |
---|---|---|
|
a08ac882c3 | |
|
063d9f2a33 |
|
@ -18,7 +18,7 @@ services:
|
|||
container_name: ns1
|
||||
build:
|
||||
dockerfile: Dockerfile.primary
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-primary:240514.2.1
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-primary:240515.2.1
|
||||
restart: always
|
||||
user: root
|
||||
environment:
|
||||
|
@ -41,7 +41,7 @@ services:
|
|||
container_name: ns2
|
||||
build:
|
||||
dockerfile: Dockerfile.secondary
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-secondary:240514.2.1
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-secondary:240515.2.1
|
||||
restart: always
|
||||
user: root
|
||||
environment:
|
||||
|
|
|
@ -1,17 +1,18 @@
|
|||
$TTL 1H
|
||||
$TTL 2m
|
||||
@ IN SOA in.thelinuxpro.net. root.in.thelinuxpro.net. (
|
||||
24051401 ; serial, todays date + todays serial #
|
||||
1H ; refresh, seconds
|
||||
2H ; retry, seconds
|
||||
1D ; expire, seconds
|
||||
1D ) ; minimum, seconds
|
||||
24051501 ; serial, todays date + todays serial #
|
||||
1h ; refresh, seconds
|
||||
15m ; retry, seconds
|
||||
10D ; expire, seconds
|
||||
1d ; minimum, seconds
|
||||
)
|
||||
;
|
||||
NS ns1.in.thelinuxpro.net.
|
||||
NS ns2.in.thelinuxpro.net.
|
||||
; MX 10 thelinuxpro.net. ; Primary Mail Exchanger
|
||||
TXT "The Linux Pro Internal Net"
|
||||
NS ns1.in.thelinuxpro.net.
|
||||
NS ns2.in.thelinuxpro.net.
|
||||
; MX 10 thelinuxpro.net. ; Primary Mail Exchanger
|
||||
TXT "The Linux Pro Internal Net"
|
||||
;
|
||||
localhost IN A 127.0.0.1
|
||||
IN A 127.0.0.1
|
||||
;
|
||||
ns1 IN A 10.99.153.241
|
||||
ns2 IN A 10.99.153.242
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
$TTL 86400
|
||||
$TTL 2m
|
||||
|
||||
@ IN SOA kameronkenny.com. root.kameronkenny.com. (
|
||||
24042001 ; serial number YYMMDDNN
|
||||
28800 ; Refresh
|
||||
7200 ; Retry
|
||||
864000 ; Expire
|
||||
86400 ; Min TTL
|
||||
24051501 ; serial number YYMMDDNN
|
||||
1h ; Refresh
|
||||
15m ; Retry
|
||||
10d ; Expire
|
||||
1d ; Min TTL
|
||||
)
|
||||
;
|
||||
NS ns1.kameronkenny.com.
|
||||
|
@ -14,10 +14,10 @@ $TTL 86400
|
|||
ns1 IN A 204.8.15.80
|
||||
ns2 IN A 204.8.15.81
|
||||
;
|
||||
kameronkenny.com. IN A 185.199.108.153
|
||||
kameronkenny.com. IN A 185.199.109.153
|
||||
kameronkenny.com. IN A 185.199.110.153
|
||||
kameronkenny.com. IN A 185.199.111.153
|
||||
IN A 185.199.108.153
|
||||
IN A 185.199.109.153
|
||||
IN A 185.199.110.153
|
||||
IN A 185.199.111.153
|
||||
;
|
||||
photos IN CNAME domains.smugmug.com.
|
||||
www IN CNAME kameronkenny.com.
|
||||
photos IN CNAME domains.smugmug.com.
|
||||
www IN CNAME kameronkenny.com.
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
$TTL 86400
|
||||
$TTL 2m
|
||||
|
||||
@ IN SOA thelinuxpro.net. root.thelinuxpro.net. (
|
||||
24042001 ; serial number YYMMDDNN
|
||||
28800 ; Refresh
|
||||
7200 ; Retry
|
||||
864000 ; Expire
|
||||
86400 ; Min TTL
|
||||
24051501 ; serial number YYMMDDNN
|
||||
1h ; Refresh
|
||||
15m ; Retry
|
||||
10d ; Expire
|
||||
1d ; Min TTL
|
||||
)
|
||||
;
|
||||
NS ns1.thelinuxpro.net.
|
||||
|
@ -15,4 +15,5 @@ $TTL 86400
|
|||
ns1 IN A 204.8.15.80
|
||||
ns2 IN A 204.8.15.81
|
||||
;
|
||||
IN A 204.8.15.81
|
||||
v IN A 204.8.15.80
|
||||
|
|
Loading…
Reference in New Issue