Make DNS aggregator listen on port 53

Using the non-standard port was a pain. Now that all the DNSMasq stuff
works, move back to the default port.
This commit is contained in:
Joshua Boniface 2019-07-30 09:20:01 -04:00
parent 37eaf000c8
commit 324990739e
1 changed files with 1 additions and 2 deletions

View File

@ -96,10 +96,9 @@ class PowerDNSInstance(object):
'--disable-syslog=yes', # Log only to stdout (which is then captured)
'--disable-axfr=no', # Allow AXFRs
'--allow-axfr-ips=0.0.0.0/0', # Allow AXFRs to anywhere
# '--also-notify=10.101.0.60', # Notify upstreams
'--local-address={},{}'.format(self.vni_ipaddr, self.upstream_ipaddr),
# Listen on floating IPs
'--local-port=10053', # On port 10053
'--local-port=53', # On port 53
'--log-dns-details=on', # Log details
'--loglevel=3', # Log info
'--master=yes', # Enable master mode