We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95cd937 commit ca4669cCopy full SHA for ca4669c
systemvm/debian/etc/vpcdnsmasq.conf
@@ -462,3 +462,4 @@ log-facility=/var/log/dnsmasq.log
462
conf-dir=/etc/dnsmasq.d
463
464
dhcp-optsfile=/etc/dhcpopts.txt
465
+localise-queries
systemvm/debian/opt/cloud/bin/cs/CsDhcp.py
@@ -127,6 +127,9 @@ def configure_server(self):
127
listen_address.append(gateway)
128
else:
129
listen_address.append(ip)
130
+ # Add localized "data-server" records in /etc/hosts for VPC routers
131
+ if self.config.is_vpc():
132
+ self.add_host(gateway, "%s data-server" % CsHelper.get_hostname())
133
idx += 1
134
135
# Listen Address
0 commit comments