From 1ad4cd4d35bcd0d4d9898650eb0452b184b55f77 Mon Sep 17 00:00:00 2001 From: Romanos Skiadas Date: Mon, 13 Mar 2017 15:08:54 +0200 Subject: Fix quagga peering by working around the NAT Quagga peering doesn't seem to work over the NATted openstack external network. To work around this, directly patch the quagga instance to the external network and give it a fixed IP in that network. Then, all the peering traffic goes over that patched interface. Change-Id: I8d9d8fef4e86839c821f83e564d5c49cc15e43ae JIRA: SDNVPN-114 Signed-off-by: Romanos Skiadas --- sdnvpn/artifacts/quagga_setup.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sdnvpn/artifacts/quagga_setup.sh') diff --git a/sdnvpn/artifacts/quagga_setup.sh b/sdnvpn/artifacts/quagga_setup.sh index d52cbed..8a90198 100644 --- a/sdnvpn/artifacts/quagga_setup.sh +++ b/sdnvpn/artifacts/quagga_setup.sh @@ -12,6 +12,11 @@ sleep 20 # Variables to be filled in with python NEIGHBOR_IP=%s OWN_IP=%s +# directly access the instance from the external net without NAT +EXT_NET_MASK=%s + +ip link set ens7 up +ip addr add $OWN_IP/$EXT_NET_MASK dev ens7 ZEBRA_CONFIG_LOCATION="/etc/quagga/zebra.conf" DAEMONS_FILE_LOCATION="/etc/quagga/daemons" -- cgit 1.2.3-korg