added jq documents

This commit is contained in:
2026-04-15 00:45:23 +03:30
parent edea1fe9e8
commit fa6bb1557d
2 changed files with 415 additions and 0 deletions

View File

@@ -1,3 +1,32 @@
```bash
sudo apt install bind9
```
```conf
options {
directory "/var/cache/bind";
forwarders {
192.168.1.10;
8.8.8.8;
1.1.1.1;
};
dnssec-validation no;
#listen-on { any; };
# listen-on-v6 { any; };
listen-on port 53 { 127.0.0.1; };
listen-on-v6 { none; };
forward only;
allow-query { any; };
recursion yes;
allow-recursion { any; };
};
```