diff options
Diffstat (limited to 'applications/luci-app-unbound/luasrc/model/cbi/unbound')
-rw-r--r-- | applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua | 3 | ||||
-rw-r--r-- | applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua index acbd7c2aed..f23f38f937 100644 --- a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua +++ b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua @@ -77,6 +77,7 @@ if (valman == "0") then translate("DNSSEC NTP Fix"), translate("Break the loop where DNSSEC needs NTP and NTP needs DNS")) nvd.optional = true + nvd.default = true nvd:depends("validator", true) prt = s1:taboption("basic", Value, "listen_port", @@ -235,7 +236,7 @@ if (valman == "0") then pro = s1:taboption("resource", ListValue, "protocol", translate("Recursion Protocol"), - translate("Chose the IP versions used upstream and downstream")) + translate("Choose the IP versions used upstream and downstream")) pro:value("default", translate("Default")) pro:value("ip4_only", translate("IP4 Only")) pro:value("ip6_local", translate("IP4 All and IP6 Local")) diff --git a/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua b/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua index f4a6ca6ddd..171b31ea4d 100644 --- a/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua +++ b/applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua @@ -55,6 +55,7 @@ else ast:value("dnsmasq", "dnsmasq") ast:value("ipset-dns", "ipset-dns") ast:value("nsd", "nsd") + ast:value("unprotected-loop", "unprotected-loop") rlv = s7:option(Flag, "resolv_conf", translate("Use 'resolv.conf.auto'"), translate("Forward to upstream nameservers (ISP)")) |