Initial commit
Some checks failed
Update Docker Hub Description / dockerHubDescription (push) Failing after 33s
Docker Image CI / Build Docker Image To Dockerhub (push) Failing after 24s

This commit is contained in:
2025-11-10 21:44:17 +01:00
committed by GianLuca Vagnuzzi
commit a422ca950e
12 changed files with 992 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
$TTL 24h
@ IN SOA mydomain.lan. root.mydomain.lan. (
2013011300 ; serial number
3h ; refresh time
30m ; retry time
7d ; expire time
3h ; negative caching ttl
)
IN NS ns1.mydomain.lan.
IN NS ns2.mydomain.lan.
4 IN PTR host1.mydomain.lan.

View File

@@ -0,0 +1,25 @@
$TTL 24h
@ IN SOA ns1.mydomain.lan. root.mydomain.lan. (
2013011300 ; serial number
3h ; refresh time
30m ; retry time
7d ; expire time
3h ; negative caching ttl
)
; name servers - NS records
@ IN NS ns1.mydomain.lan.
@ IN NS ns2.mydomain.lan.
; name servers - A records
@ IN A 192.168.0.3 ; this is the record needed to resolve apex domain = mydomain.lan
ns1 IN A 192.168.0.1
ns2 IN A 192.168.0.2
host1 IN A 192.168.0.4
; name servers - CNAME records
cname1 IN CNAME host1

View File

@@ -0,0 +1,25 @@
options {
directory "/data";
listen-on { any; };
allow-query { any; };
forwarders { 8.8.8.8; 1.1.1.1; };
querylog yes;
check-names master ignore;
check-names slave ignore;
check-names response ignore;
//allow-transfer { any; };
};
zone "mydomain.lan" {
type master;
file "db.mydomain.lan.zone";
//allow-transfer { 10.128.20.12; }; # ns2
};
zone "0.168.192.in-addr.arpa" {
type master;
file "db.192.168.0.zone";
//allow-transfer { 10.128.20.12; }; # ns2
};