Skip to content

Commit 9548846

Browse files
committed
Merge branch 'master' into release/v6.0
2 parents fa42db5 + bcd306b commit 9548846

File tree

2 files changed

+11
-21
lines changed

2 files changed

+11
-21
lines changed

docs/ftldns/cache_dump.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sudo killall -USR1 pihole-FTL
99
Such a cache dump looks like
1010

1111
``` plain
12-
cache size 10000, 0/20984 cache insertions re-used unexpired cache entries.
12+
cache size 10000, 0/20984 cache insertions reused unexpired cache entries.
1313
queries forwarded 10247, queries answered locally 14713
1414
queries for authoritative zones 0
1515
pool memory in use 22272, max 24048, allocated 480000
@@ -80,7 +80,7 @@ where we stripped lines like `Dec 15 20:32:02 dnsmasq[4177892]:` for the sake of
8080
### Cache metrics
8181

8282
``` plain
83-
cache size 10000, 0/20984 cache insertions re-used unexpired cache entries.
83+
cache size 10000, 0/20984 cache insertions reused unexpired cache entries.
8484
```
8585

8686
tells us that the cache size is 10000 (Pi-hole's default value). None of the 20984 cache insertions had to overwrite still valid cache lines. If this number is zero, your cache was sufficiently large at any time. If this number is notably larger than zero, you should consider increasing the cache size.

docs/guides/dns/unbound.md

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ server:
9090
do-udp: yes
9191
do-tcp: yes
9292

93-
# May be set to yes if you have IPv6 connectivity
94-
do-ip6: no
93+
# May be set to no if you don't have IPv6 connectivity
94+
do-ip6: yes
9595

9696
# You want to leave this to no unless you have *native* IPv6. With 6to4 and
9797
# Terredo tunnels your web browser should favor IPv4 for the same reasons
@@ -156,14 +156,6 @@ dig pi-hole.net @127.0.0.1 -p 5335
156156

157157
The first query may be quite slow, but subsequent queries, also to other domains under the same TLD, should be fairly quick.
158158

159-
You should also consider adding
160-
161-
``` plain
162-
edns-packet-max=1232
163-
```
164-
165-
to a config file like `/etc/dnsmasq.d/99-edns.conf` to signal FTL to adhere to this limit.
166-
167159
### Test validation
168160

169161
You can test DNSSEC validation using
@@ -222,16 +214,14 @@ sudo service unbound restart
222214
!!! warning
223215
It's not recommended to increase verbosity for daily use, as unbound logs a lot. But it might be helpful for debugging purposes.
224216

225-
There are five levels of verbosity
217+
There are five levels of verbosity:
226218

227-
```
228-
Level 0 means no verbosity, only errors
229-
Level 1 gives operational information
230-
Level 2 gives detailed operational information
231-
Level 3 gives query level information
232-
Level 4 gives algorithm level information
233-
Level 5 logs client identification for cache misses
234-
```
219+
- Level 0 means no verbosity, only errors
220+
- Level 1 gives operational information
221+
- Level 2 gives detailed operational information
222+
- Level 3 gives query level information
223+
- Level 4 gives algorithm level information
224+
- Level 5 logs client identification for cache misses
235225

236226
First, specify the log file, human-readable timestamps and the verbosity level in the `server` part of
237227
`/etc/unbound/unbound.conf.d/pi-hole.conf`:

0 commit comments

Comments
 (0)