summaryrefslogtreecommitdiff
path: root/src/conf_mode/dns_forwarding.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf_mode/dns_forwarding.py')
-rwxr-xr-xsrc/conf_mode/dns_forwarding.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/conf_mode/dns_forwarding.py b/src/conf_mode/dns_forwarding.py
index d28e8ff64..43be9d526 100755
--- a/src/conf_mode/dns_forwarding.py
+++ b/src/conf_mode/dns_forwarding.py
@@ -62,6 +62,9 @@ forward-zones={% for d in domains %}
{% endif %}
+# dnssec
+dnssec={{ dnssec }}
+
# name-server
forward-zones-recurse=.={{ name_servers | join(';') }}
@@ -74,7 +77,8 @@ default_config_data = {
'interfaces': [],
'name_servers': [],
'negative_ttl': 3600,
- 'domains': []
+ 'domains': [],
+ 'dnssec' : 'process-no-validate'
}
@@ -137,6 +141,9 @@ def get_config():
if conf.exists('listen-address'):
dns['listen_on'] = conf.return_values('listen-address')
+ if conf.exists('dnssec'):
+ dns['dnssec'] = conf.return_value('dnssec')
+
## Hacks and tricks
# The old VyOS syntax that comes from dnsmasq was "listen-on $interface".