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:
parent
37eaf000c8
commit
324990739e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue