From cf765e23b68791c2b66cdf9fa51ba0bf5f25fbe5 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Mon, 13 Feb 2017 15:51:40 -0500 Subject: [PATCH] CSIT: adds route fix for functest Change-Id: I3dae88e8af728bbcef0f0d4be27478cf7b8e06fc Signed-off-by: Tim Rozet --- jjb/apex/apex-snapshot-deploy.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jjb/apex/apex-snapshot-deploy.sh b/jjb/apex/apex-snapshot-deploy.sh index 05a2d4820..dcae0c14d 100644 --- a/jjb/apex/apex-snapshot-deploy.sh +++ b/jjb/apex/apex-snapshot-deploy.sh @@ -99,6 +99,12 @@ for network_def in ${virsh_networks}; do echo "Configuring IP 192.168.37.1 on br-external" sudo ip addr add 192.168.37.1/24 dev br-external sudo ip link set up dev br-external + # Route for admin network + # The overcloud controller is multi-homed and will fail to respond + # to traffic from the functest container due to reverse-path-filtering + # This route allows reverse traffic, by forcing admin network destined + # traffic through the external network + sudo ip route add 192.0.2.0/25 dev br-external fi fi done -- 2.16.6