tests with subdirectory structure

This commit is contained in:
Andreas Steffen
2006-07-03 07:11:30 +00:00
parent 92069df82f
commit 6db2ac30c7
607 changed files with 9414 additions and 0 deletions
@@ -0,0 +1,13 @@
The roadwarrior <b>carol</b> sets up a connection to gateway <b>moon</b>.
Using the <b>left|rightprotoport</b> selectors, the IPsec tunnel is
restricted to the ICMP protocol. Upon the successful establishment of the
IPsec tunnel, <b>firewall=yes</b> automatically inserts iptables-based
firewall rules that let pass the tunneled ICMP traffic. In order to test
both tunnel and firewall, <b>carol</b> pings the client <b>alice</b> behind
the gateway <b>moon</b> as well as the inner interface of the gateway.
For the latter ping <b>lefthostaccess=yes</b> is required.
<p>
By default, the native IPsec stack of the Linux 2.6 kernel transmits
protocols and ports not covered by any IPsec SA in the clear. Thus by
selectively opening the firewalls, <b>carol</b> sets up an SSH session to
<b>alice</b> that is not going through the tunnel.
@@ -0,0 +1,7 @@
carol::ipsec status::home.*STATE_QUICK_I2.*IPsec SA established::YES
moon::ipsec status::rw.*STATE_QUICK_R2.*IPsec SA established::YES
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
carol::ping -c 1 PH_IP_MOON1::64 bytes from PH_IP_MOON1: icmp_seq=1::YES
carol::ssh -o ConnectTimeout=5 PH_IP_ALICE hostname::alice::YES
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
moon::tcpdump::IP moon.strongswan.org > carol.strongswan.org: ESP::YES
@@ -0,0 +1,26 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutodebug=control
crlcheckinterval=180
strictcrlpolicy=no
charonstart=no
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
conn home-icmp
left=PH_IP_CAROL
leftnexthop=%direct
[email protected]
leftcert=carolCert.pem
leftprotoport=icmp
leftfirewall=yes
right=PH_IP_MOON
rightsubnet=10.1.0.0/16
rightprotoport=icmp
[email protected]
auto=add
@@ -0,0 +1,26 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutodebug=control
crlcheckinterval=180
strictcrlpolicy=no
charonstart=no
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
conn rw-icmp
left=PH_IP_MOON
leftnexthop=%direct
leftsubnet=10.1.0.0/16
leftprotoport=icmp
[email protected]
leftcert=moonCert.pem
leftfirewall=yes
lefthostaccess=yes
right=%any
rightprotoport=icmp
auto=add
@@ -0,0 +1,6 @@
moon::iptables -v -n -L
carol::iptables -v -n -L
moon::ipsec stop
carol::ipsec stop
moon::/etc/init.d/iptables stop 2> /dev/null
carol::/etc/init.d/iptables stop 2> /dev/null
@@ -0,0 +1,10 @@
moon::/etc/init.d/iptables start 2> /dev/null
moon::iptables -I FORWARD -i eth0 -p tcp -d 10.1.0.0/16 --dport ssh -jACCEPT
moon::iptables -I FORWARD -o eth0 -p tcp -s 10.1.0.0/16 --sport ssh -jACCEPT
carol::/etc/init.d/iptables start 2> /dev/null
carol::iptables -I INPUT -i eth0 -p tcp -s 10.1.0.0/16 --sport ssh -d PH_IP_CAROL -jACCEPT
carol::iptables -I OUTPUT -o eth0 -p tcp -d 10.1.0.0/16 --dport ssh -s PH_IP_CAROL -jACCEPT
moon::ipsec start
carol::ipsec start
carol::sleep 2
carol::ipsec up home-icmp
@@ -0,0 +1,21 @@
#!/bin/bash
#
# This configuration file provides information on the
# UML instances used for this test
# All UML instances that are required for this test
#
UMLHOSTS="alice moon carol winnetou"
# Corresponding block diagram
#
DIAGRAM="a-m-c-w.png"
# UML instances on which tcpdump is to be started
#
TCPDUMPHOSTS="moon"
# UML instances on which IPsec is started
# Used for IPsec logging purposes
#
IPSECHOSTS="moon carol"