From 096b7f6889f04301618a1d66a781e3040de4f7ab Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Mon, 7 Apr 2008 06:14:21 +0000 Subject: [PATCH] do-tests now lists strongswan.conf and ip xfrm policy|state --- testing/do-tests.in | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/testing/do-tests.in b/testing/do-tests.in index 56a3b7d..da4a6d6 100755 --- a/testing/do-tests.in +++ b/testing/do-tests.in @@ -473,36 +473,46 @@ do then scp $HOSTLOGIN:/etc/ipsec.d/ipsec.sql \ $TESTRESULTDIR/${host}.ipsec.sql > /dev/null 2>&1 + scp $HOSTLOGIN:/etc/ipsec.d/strongswan.conf \ + $TESTRESULTDIR/${host}.strongswan.conf > /dev/null 2>&1 else touch $TESTRESULTDIR/${host}.ipsec.sql + touch $TESTRESULTDIR/${host}.strongswan.conf fi + ssh $HOSTLOGIN ip xfrm policy \ + > $TESTRESULTDIR/${host}.ip.policy 2>/dev/null + ssh $HOSTLOGIN ip xfrm state \ + > $TESTRESULTDIR/${host}.ip.state 2>/dev/null ssh $HOSTLOGIN ip route list table $SOURCEIP_ROUTING_TABLE \ - > $TESTRESULTDIR/${host}.iproute 2>/dev/null + > $TESTRESULTDIR/${host}.ip.route 2>/dev/null ssh $HOSTLOGIN $IPTABLES -v -n -L \ > $TESTRESULTDIR/${host}.iptables 2>/dev/null cat >> $TESTRESULTDIR/index.html <<@EOF

$host

- - -- 2.7.4
+ +