Compare commits

..

2 Commits

Author SHA1 Message Date
6b38c46be9 Remove recursion 2024-09-30 16:56:28 +02:00
85d4df513b Add logging 2024-09-30 14:45:51 +02:00
3 changed files with 8 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ options {
listen-on-v6 { any; }; listen-on-v6 { any; };
recursion yes; //recursion yes;
allow-recursion { everybody; }; //allow-recursion { everybody; };
allow-transfer { none; }; //allow-transfer { none; };
}; };

View File

@@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh
pkill named pkill named
/usr/sbin/named /usr/sbin/named -L /var/log/bind.log

View File

@@ -1,3 +1,5 @@
#!/bin/sh #!/bin/sh
/usr/sbin/named
/usr/sbin/named -L /var/log/bind.log
while true; do /bin/bash; done while true; do /bin/bash; done