1
0
ketr.services/dns/etc/bind/named.conf.options
2023-10-10 11:45:38 -07:00

48 lines
855 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;
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; };
};