gw-core01: fix dns issues

gigacube could not handle amount of dns queries.

* move dns to quad9 and cloudflare
* increase size of dns cache
* increase amount of concurrent dns queries
This commit is contained in:
Gregor Michels 2023-03-08 00:11:54 +01:00
parent 191b7f2a77
commit a236643969
2 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,8 @@ config dnsmasq
option nonwildcard '1' option nonwildcard '1'
option localservice '1' option localservice '1'
option ednspacket_max '1232' option ednspacket_max '1232'
option dnsforwardmax 300
option cachesize 900
config dhcp 'mgmt' config dhcp 'mgmt'
option interface 'mgmt' option interface 'mgmt'

View File

@ -74,6 +74,9 @@ config interface 'clients'
config interface 'wan' config interface 'wan'
option device 'switch.3' option device 'switch.3'
option proto 'dhcp' option proto 'dhcp'
option peerdns '0'
list dns '9.9.9.9'
list dns '1.1.1.1'
config interface 'wan6' config interface 'wan6'
option device 'switch.3' option device 'switch.3'