From 227aa4661345a585559097db3133c1582191ed7d Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Mon, 20 Jan 2014 18:51:24 +0000 Subject: [PATCH] More network debugging detail * devstack-vm-gate-wrap.sh: Sometimes devstack-gate runs fail for reasons related to the local network. Include IPv6 addresses in addition to the IPv4 addressing previously displayed, and add routing and ARP tables as well. Change-Id: I771b6081758020cf1521443d1bd15a27ede7f2b1 --- devstack-vm-gate-wrap.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/devstack-vm-gate-wrap.sh b/devstack-vm-gate-wrap.sh index 9c800828..0fbe07b1 100755 --- a/devstack-vm-gate-wrap.sh +++ b/devstack-vm-gate-wrap.sh @@ -222,7 +222,12 @@ fi echo "Triggered by: https://review.openstack.org/$ZUUL_CHANGE patchset $ZUUL_PATCHSET" echo "Pipeline: $ZUUL_PIPELINE" echo "IP configuration of this host:" -ip -f inet addr show +ip addr show +echo "IP routing tables of this host:" +ip route show +ip -6 route show +echo "ARP table of this host:" +ip neighbor show setup_host &> $WORKSPACE/logs/devstack-gate-setup-host.txt