diff options
| author | Christian Poessinger <christian@poessinger.com> | 2019-08-20 12:02:49 +0200 | 
|---|---|---|
| committer | Christian Poessinger <christian@poessinger.com> | 2019-08-20 12:02:49 +0200 | 
| commit | dbdd50e96f5af8f59d884f03df1cdeed9bac39d1 (patch) | |
| tree | f0a43c79702e9ddf2a3c6e7959f4a5cb60378bac | |
| parent | 3f225b56f576d30bd163f975c821e8baf2be6d28 (diff) | |
| download | vyos-1x-dbdd50e96f5af8f59d884f03df1cdeed9bac39d1.tar.gz vyos-1x-dbdd50e96f5af8f59d884f03df1cdeed9bac39d1.zip | |
powerdns: T1595: remove 'listen-on' CLI option
| -rw-r--r-- | interface-definitions/dns-forwarding.xml | 9 | ||||
| -rwxr-xr-x | src/conf_mode/dns_forwarding.py | 41 | 
2 files changed, 0 insertions, 50 deletions
| diff --git a/interface-definitions/dns-forwarding.xml b/interface-definitions/dns-forwarding.xml index 08a221ebe..a88c174e3 100644 --- a/interface-definitions/dns-forwarding.xml +++ b/interface-definitions/dns-forwarding.xml @@ -132,15 +132,6 @@                    </constraint>                  </properties>                </leafNode> -              <leafNode name="listen-on"> -                <properties> -                  <help>Interface to listen for DNS queries [DEPRECATED]</help> -                  <completionHelp> -                    <script>${vyos_completion_dir}/list_interfaces.py</script> -                  </completionHelp> -                  <multi/> -                </properties> -              </leafNode>                <leafNode name="negative-ttl">                  <properties>                    <help>Maximum amount of time negative entries are cached</help> diff --git a/src/conf_mode/dns_forwarding.py b/src/conf_mode/dns_forwarding.py index 86683e72c..9e81c7294 100755 --- a/src/conf_mode/dns_forwarding.py +++ b/src/conf_mode/dns_forwarding.py @@ -87,7 +87,6 @@ default_config_data = {      'cache_size': 10000,      'export_hosts_file': 'yes',      'listen_on': [], -    'interfaces': [],      'name_servers': [],      'negative_ttl': 3600,      'domains': [], @@ -168,46 +167,6 @@ def get_config(arguments):      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". -    # pdns wants addresses instead, so we emulate it by looking up all addresses -    # of a given interface and writing them to the config -    if conf.exists('listen-on'): -        print("WARNING: since VyOS 1.2.0, \"service dns forwarding listen-on\" is a limited compatibility option.") -        print("It will only make DNS forwarder listen on addresses assigned to the interface at the time of commit") -        print("which means it will NOT work properly with VRRP/clustering or addresses received from DHCP.") -        print("Please reconfigure your system with \"service dns forwarding listen-address\" instead.") - -        interfaces = conf.return_values('listen-on') - -        listen4 = [] -        listen6 = [] -        for interface in interfaces: -            try: -                addrs = netifaces.ifaddresses(interface) -            except ValueError: -                print( -                    "WARNING: interface {0} does not exist".format(interface)) -                continue - -            if netifaces.AF_INET in addrs.keys(): -                for ip4 in addrs[netifaces.AF_INET]: -                    listen4.append(ip4['addr']) - -            if netifaces.AF_INET6 in addrs.keys(): -                for ip6 in addrs[netifaces.AF_INET6]: -                    listen6.append(ip6['addr']) - -            if (not listen4) and (not (listen6)): -                print( -                    "WARNING: interface {0} has no configured addresses".format(interface)) - -        dns['listen_on'] = dns['listen_on'] + listen4 + listen6 - -        # Save interfaces in the dict for the reference -        dns['interfaces'] = interfaces -      # Add name servers received from DHCP      if conf.exists('dhcp'):          interfaces = [] | 
