Browse Source

Merge pull request #15474 from ja-pa/unbound-ttl-neg

unbound: add cache-max-negative-ttl config option
lilik-openwrt-22.03
Rosen Penev 3 years ago
committed by GitHub
parent
commit
94858ece31
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions
  1. +2
    -0
      net/unbound/files/unbound.sh
  2. +1
    -0
      net/unbound/files/unbound.uci

+ 2
- 0
net/unbound/files/unbound.sh View File

@ -990,6 +990,7 @@ unbound_conf() {
# Adaptive infrastructure info kept for 15 minutes
echo " cache-min-ttl: $UB_TTL_MIN"
echo " cache-max-ttl: 72000"
echo " cache-max-negative-ttl: $UB_NEG_TTL_MAX"
echo " val-bogus-ttl: 300"
echo " infra-host-ttl: 900"
echo
@ -1364,6 +1365,7 @@ unbound_uci() {
config_get UB_TTL_MIN "$cfg" ttl_min 120
config_get UB_TXT_DOMAIN "$cfg" domain lan
config_get UB_NEG_TTL_MAX "$cfg" ttl_neg_max 1000
config_list_foreach "$cfg" domain_insecure bundle_domain_insecure
config_list_foreach "$cfg" iface_lan bundle_lan_networks


+ 1
- 0
net/unbound/files/unbound.uci View File

@ -26,6 +26,7 @@ config unbound 'ub_main'
option resource 'default'
option root_age '9'
option ttl_min '120'
option ttl_neg_max '1000'
option unbound_control '0'
option validator '0'
option validator_ntp '1'


Loading…
Cancel
Save