diff options
-rw-r--r-- | sdnvpn/artifacts/quagga_setup.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sdnvpn/artifacts/quagga_setup.sh b/sdnvpn/artifacts/quagga_setup.sh index 1785f14..96d7374 100644 --- a/sdnvpn/artifacts/quagga_setup.sh +++ b/sdnvpn/artifacts/quagga_setup.sh @@ -5,6 +5,11 @@ set -xe # change the password because this script is run on a passwordless cloud-image echo 'ubuntu:opnfv' | chpasswd +# dns fix + +echo "8.8.8.8" > /etc/resolvconf/resolv.conf.d/head +resolvconf -u + # Wait for a floating IP # as a workaround to NAT breakage sleep 20 |