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,6 @@
This test is based on the <a href="../mode-config">mode-config</a>
scenario and demonstrates the multiple use of the <b>include</b>
parameter in IPsec configuration files. At the top level <b>/etc/ipsec.conf</b>
defines the config setup section and includes <b>/etc/ipsec.connections</b>
which in turn includes <b>/etc/ipsec.host</b> and <b>/etc/ipsec.peers/*</b>
thereby showing the use of wildcards in path definitions.
@@ -0,0 +1,16 @@
carol::cat /var/log/auth.log::setting virtual IP source address to 10.3.0.1::YES
carol::ipsec status::home.*STATE_QUICK_I2.*IPsec SA established::YES
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
dave::cat /var/log/auth.log::setting virtual IP source address to 10.3.0.2::YES
dave::ipsec status::home.*STATE_QUICK_I2.*IPsec SA established::YES
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
moon::ipsec status::rw-carol.*STATE_QUICK_R2.*IPsec SA established::YES
moon::ipsec status::rw-dave.*STATE_QUICK_R2.*IPsec SA established::YES
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
moon::tcpdump::IP moon.strongswan.org > carol.strongswan.org: ESP::YES
moon::tcpdump::IP dave.strongswan.org > moon.strongswan.org: ESP::YES
moon::tcpdump::IP moon.strongswan.org > dave.strongswan.org: ESP::YES
alice::tcpdump::IP carol1.strongswan.org > alice.strongswan.org: icmp::YES
alice::tcpdump::IP alice.strongswan.org > carol1.strongswan.org: icmp::YES
alice::tcpdump::IP dave1.strongswan.org > alice.strongswan.org: icmp::YES
alice::tcpdump::IP alice.strongswan.org > dave1.strongswan.org: icmp::YES
@@ -0,0 +1,29 @@
# /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
left=PH_IP_CAROL
leftsourceip=%modeconfig
leftnexthop=%direct
leftcert=carolCert.pem
[email protected]
leftfirewall=yes
right=PH_IP_MOON
rightsubnet=10.1.0.0/16
[email protected]
auto=add
@@ -0,0 +1,29 @@
# /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
left=PH_IP_DAVE
leftsourceip=%modeconfig
leftnexthop=%direct
leftcert=daveCert.pem
[email protected]
leftfirewall=yes
right=PH_IP_MOON
rightsubnet=10.1.0.0/16
[email protected]
auto=add
@@ -0,0 +1,9 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutodebug=control
crlcheckinterval=180
strictcrlpolicy=no
charonstart=no
include /etc/ipsec.connections
@@ -0,0 +1,12 @@
# /etc/ipsec.connections - connection definitions
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
include /etc/ipsec.host
include /etc/ipsec.peers/*
@@ -0,0 +1,11 @@
# /etc/ipsec.host - my host configuration
conn %default
left=PH_IP_MOON
leftsubnet=10.1.0.0/16
leftsourceip=PH_IP_MOON1
leftnexthop=%direct
leftcert=moonCert.pem
[email protected]
leftfirewall=yes
@@ -0,0 +1,8 @@
# /etc/ipsec.peers/ipsec.carol - connection from carol
conn rw-carol
right=%any
[email protected]
rightsourceip=PH_IP_CAROL1
auto=add
@@ -0,0 +1,8 @@
# /etc/ipsec.peers/ipsec.dave - connection from dave
conn rw-dave
right=%any
[email protected]
rightsourceip=PH_IP_DAVE1
auto=add
@@ -0,0 +1,13 @@
moon::iptables -v -n -L
carol::iptables -v -n -L
dave::iptables -v -n -L
moon::ipsec stop
carol::ipsec stop
dave::ipsec stop
moon::/etc/init.d/iptables stop 2> /dev/null
carol::/etc/init.d/iptables stop 2> /dev/null
dave::/etc/init.d/iptables stop 2> /dev/null
carol::ip addr del PH_IP_CAROL1/32 dev eth0
dave::ip addr del PH_IP_DAVE1/32 dev eth0
moon::rm /etc/ipsec.connections /etc/ipsec.host
moon::rm -r /etc/ipsec.peers
@@ -0,0 +1,11 @@
moon::cat /etc/ipsec.connections /etc/ipsec.host /etc/ipsec.peers/*
moon::/etc/init.d/iptables start 2> /dev/null
carol::/etc/init.d/iptables start 2> /dev/null
dave::/etc/init.d/iptables start 2> /dev/null
carol::ipsec start
dave::ipsec start
moon::ipsec start --debug-all
carol::sleep 2
carol::ipsec up home
dave::ipsec up home
carol::sleep 1
@@ -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 dave"
# Corresponding block diagram
#
DIAGRAM="a-m-c-w-d.png"
# UML instances on which tcpdump is to be started
#
TCPDUMPHOSTS="moon alice"
# UML instances on which IPsec is started
# Used for IPsec logging purposes
#
IPSECHOSTS="moon carol dave"