Compare commits

..

No commits in common. "5bed31ed27ac0acda9e1a79c80bc644b2f48be81" and "44ff6a5b9a3eabd24565fd3a2df0b6953c66cf8d" have entirely different histories.

3 changed files with 41 additions and 47 deletions

View File

@ -1,7 +1,5 @@
--- ---
volumes: #volumes:
bind9_logs:
driver: local
# bind9_cache: # bind9_cache:
# driver: local # driver: local
# primary_var_lib_bind: # primary_var_lib_bind:
@ -18,14 +16,13 @@ services:
container_name: ns1 container_name: ns1
build: build:
dockerfile: Dockerfile.primary dockerfile: Dockerfile.primary
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-primary:240420.08 image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-primary:240420.06
restart: always restart: always
user: root user: root
environment: environment:
- TZ='America/Indianapolis' - TZ='America/Indianapolis'
- BIND9_USER=bind - BIND9_USER=bind
volumes: # volumes:
- bind9_logs:/var/named/log
#- primary_var_lib_bind:/var/lib/bind #- primary_var_lib_bind:/var/lib/bind
#- ./primary/var/lib/bind:/var/lib/bind:rw #- ./primary/var/lib/bind:/var/lib/bind:rw
#- ./primary/etc/bind/named.conf:/etc/bind/named.conf #- ./primary/etc/bind/named.conf:/etc/bind/named.conf
@ -41,14 +38,13 @@ services:
container_name: ns2 container_name: ns2
build: build:
dockerfile: Dockerfile.secondary dockerfile: Dockerfile.secondary
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-secondary:240420.06 image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-secondary:240420.05
restart: always restart: always
user: root user: root
environment: environment:
- TZ='America/Indianapolis' - TZ='America/Indianapolis'
- BIND9_USER=bind - BIND9_USER=bind
volumes: #volumes:
- bind9_logs:/var/named/log
#- secondary_var_lib_bind:/var/lib/bind #- secondary_var_lib_bind:/var/lib/bind
#- ./secondary/var/lib/bind:/var/lib/bind:rw #- ./secondary/var/lib/bind:/var/lib/bind:rw
#- ./secondary/etc/bind/named.conf:/etc/bind/named.conf:ro #- ./secondary/etc/bind/named.conf:/etc/bind/named.conf:ro

View File

@ -1,20 +1,19 @@
$TTL 3600 $TTL 3600
@ IN SOA in.thelinuxpro.net. hostmaster.in.thelinuxpro.net. ( @ IN SOA in.thelinuxpro.net. hostmaster.in.thelinuxpro.net. (
24042003 ; serial 24042002 ; serial
21600 ; refresh after 6 hours 21600 ; refresh after 6 hours
3600 ; retry after 1 hour 3600 ; retry after 1 hour
604800 ; expire after 1 week 604800 ; expire after 1 week
86400 ) ; minimum TTL of 1 day 86400 ) ; minimum TTL of 1 day
; ;
IN NS ns1.in.thelinuxpro.net. @ IN NS ns1.in.thelinuxpro.net.
IN NS ns2.in.thelinuxpro.net. @ IN NS ns2.in.thelinuxpro.net.
; ;
51.22 IN PTR pi501 51.22 IN PTR pi501
61.22 IN PTR pi401 61.22 IN PTR pi401
11.23 IN PTR jenkins 11.23 IN PTR jenkins
12.23 IN PTR git 12.23 IN PTR git
13.23 IN PTR git-mysql 13.23 IN PTR git-mysql
21.23 IN PTR docker-regsitry1
71.23 IN PTR es01 71.23 IN PTR es01
72.23 IN PTR kibana 72.23 IN PTR kibana
73.23 IN PTR metricbeat01 73.23 IN PTR metricbeat01

View File

@ -1,52 +1,51 @@
$TTL 1H $TTL 1H
@ IN SOA in.thelinuxpro.net. root.in.thelinuxpro.net. ( @ IN SOA in.thelinuxpro.net. root.in.thelinuxpro.net. (
24042003 ; serial, todays date + todays serial # 24042002 ; serial, todays date + todays serial #
1H ; refresh, seconds 1H ; refresh, seconds
2H ; retry, seconds 2H ; retry, seconds
1D ; expire, seconds 1D ; expire, seconds
1D ) ; minimum, seconds 1D ) ; minimum, seconds
; ;
NS ns1.in.thelinuxpro.net. @ NS ns1.thelinuxpro.net.
NS ns2.in.thelinuxpro.net. @ NS ns2.thelinuxpro.net.
; MX 10 thelinuxpro.net. ; Primary Mail Exchanger ; MX 10 thelinuxpro.net. ; Primary Mail Exchanger
TXT "The Linux Pro Internal Net" TXT "The Linux Pro Internal Net"
; ;
localhost IN A 127.0.0.1 localhost IN A 127.0.0.1
; ;
unifi IN A 10.200.254.254 unifi IN A 10.200.254.254
; ;
ns1 IN A 10.99.153.241 ns1 IN A 10.99.153.241
ns2 IN A 10.99.153.242 ns2 IN A 10.99.153.242
; ;
pi401 IN A 10.99.22.61 pi401 IN A 10.99.22.61
pi501 IN A 10.99.22.51 pi501 IN A 10.99.22.51
; ;
jenkins IN A 10.99.23.11 jenkins IN A 10.99.23.11
git IN A 10.99.23.12 git IN A 10.99.23.12
git-mysql IN A 10.99.23.13 git-mysql IN A 10.99.23.13
docker-registry1 IN A 10.99.23.21 viz IN A 10.99.23.99
es01 IN A 10.99.23.71 es01 IN A 10.99.23.71
kibana IN A 10.99.23.72 kibana IN A 10.99.23.72
metricbeat01 IN A 10.99.23.73 metricbeat01 IN A 10.99.23.73
filebeat01 IN A 10.99.23.74 filebeat01 IN A 10.99.23.74
logstash01 IN A 10.99.23.75 logstash01 IN A 10.99.23.75
viz IN A 10.99.23.99
; ;
ns1 IN A 10.99.153.241 ns1 IN A 10.99.153.241
ns2 IN A 10.99.153.242 ns2 IN A 10.99.153.242
; ;
pihole IN A 10.200.53.250 pihole IN A 10.200.53.250
1.ntp IN A 10.200.53.251 1.ntp IN A 10.200.53.251
2.ntp IN A 10.200.53.252 2.ntp IN A 10.200.53.252
; ;
dns01 IN A 10.200.53.241 dns01 IN A 10.200.53.241
dns02 IN A 10.200.53.242 dns02 IN A 10.200.53.242
dns03 IN A 10.200.53.243 dns03 IN A 10.200.53.243
; ;
maverick IN A 10.200.99.222 maverick IN A 10.200.99.222
print IN A 10.200.99.226 print IN A 10.200.99.226
printer IN A print printer IN A print
diskstation IN A 10.200.99.230 diskstation IN A 10.200.99.230
nas81 IN A 10.200.99.231 nas81 IN A 10.200.99.231
nas IN CNAME nas81 nas IN CNAME nas81
gw99 IN A 10.200.99.254 gw99 IN A 10.200.99.254