1
0
ketr.services/dns/etc/bind/named.conf.options
James Ketrenos 592f54f809 DNS working correctly, and restructured directories
Signed-off-by: James Ketrenos <james_git@ketrenos.com>
2023-10-10 13:41:40 -07:00

49 lines
846 B
Plaintext

#empty-zones-enable no;
key parent-key {
algorithm HMAC-MD5;
secret "aW50ZXJuYWwtc2VjcmV0ZQo=";
};
key internal-key {
algorithm HMAC-MD5;
secret "cGFyZW50LXNlY3JldGUK";
};
acl parent {
!key internal-key;
192.168.1.184; # dg1 laptop
# 192.168.1.154; # unknown
192.168.1.152; # nuc
192.168.1.134; # vr
192.168.1.245; # cell
192.168.1.78; # azurite (tinyproxy)
# 192.168.1.101; # unknown
# 192.168.1.70; # unknown
# 192.168.1.96; # unknown
};
acl ketrenos {
!key parent-key;
192.168.0.0/16;
10.10.0.0/16;
172.0.0.0/8;
localhost;
};
options {
directory "/var/cache/bind";
dnssec-validation auto;
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { none; };
listen-on { any; }; //50.39.247.22; 192.168.1.1; 127.0.0.1; };
allow-query { any; };
notify explicit;
allow-transfer { none; };
};