All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
include "/etc/named/rndc.key";
|
|
|
|
controls {
|
|
inet 127.0.0.1 port 953
|
|
allow { 127.0.0.1; } keys { "rndc-key"; };
|
|
};
|
|
|
|
options {
|
|
directory "/etc/named/zones";
|
|
pid-file "/etc/named/zones/named.pid";
|
|
|
|
// Hide version information
|
|
version "DNS Server";
|
|
|
|
listen-on port 8053 { any; };
|
|
listen-on-v6 { none; };
|
|
|
|
allow-query { any; };
|
|
allow-transfer { any; };
|
|
|
|
recursion no;
|
|
|
|
querylog yes;
|
|
|
|
notify yes;
|
|
also-notify {
|
|
213.239.242.238;
|
|
213.133.100.103;
|
|
193.47.99.3;
|
|
};
|
|
};
|
|
|
|
include "/etc/named/zones/zones.conf";
|
|
|
|
logging {
|
|
channel default_log {
|
|
file "/var/log/named/named.log" versions 3 size 5m;
|
|
severity info;
|
|
print-time yes;
|
|
print-severity yes;
|
|
print-category yes;
|
|
};
|
|
|
|
channel transfer_log {
|
|
file "/var/log/named/transfers.log" versions 3 size 5m;
|
|
severity info;
|
|
print-time yes;
|
|
print-severity yes;
|
|
print-category yes;
|
|
};
|
|
|
|
channel query_log {
|
|
file "/var/log/named/queries.log" versions 3 size 10m;
|
|
severity info;
|
|
print-time yes;
|
|
print-severity yes;
|
|
print-category yes;
|
|
};
|
|
|
|
category default { default_log; };
|
|
category queries { query_log; };
|
|
category xfer-in { transfer_log; };
|
|
category xfer-out { transfer_log; };
|
|
category notify { transfer_log; };
|
|
}; |