Update default upstream DNS servers

The Level3 public DNS server is responding with fake answers instead of
NXDOMAIN, replace with OpenDNS.

Change-Id: I908d15a56f39f9a2b1de639570493c07346e8b43
This commit is contained in:
Jens Rosenboom 2017-03-10 16:41:11 +01:00
parent a45c1578a3
commit 1317cfa7ad
1 changed files with 4 additions and 3 deletions

View File

@ -88,13 +88,14 @@ end
# server in their subnet
#
# Defaults are spread out across multiple, presumably
# reliable, upstream providers
# reliable, upstream providers. Deployers should replace these with their local
# resolvers when possible.
#
# 8.8.8.8 is Google
# 209.244.0.3 is Level3
# 208.67.222.222 is OpenDNS
#
# May be a comma separated list of servers
default['openstack']['network']['dnsmasq']['upstream_dns_servers'] = %w(8.8.8.8 209.244.0.3)
default['openstack']['network']['dnsmasq']['upstream_dns_servers'] = %w(8.8.8.8 208.67.222.222)
# ============================= DHCP Agent Configuration ===================
default['openstack']['network_dhcp']['config_file'] = '/etc/neutron/dhcp_agent.ini'