This commit is contained in:
Andreas Steffen
2006-07-04 06:13:33 +00:00
parent 20f29a359e
commit 5fc1577728
14 changed files with 183 additions and 0 deletions
@@ -0,0 +1,5 @@
Roadwarrior <b>carol</b> sets up an IKEv1 connection and roadwarrior <b>dave</b>
an IKEv2 tunnel, respectively, to the gateway <b>moon</b>.
In order to test the established tunnels, both roadwarriors ping the client <b>alice</b>
in the subnet behind gateway <b>moon</b>.
.
+11
View File
@@ -0,0 +1,11 @@
moon::ipsec statusall::rw.*STATE_QUICK_R2.*IPsec SA established::YES
moon::ipsec statusall::rw.*IKE_SA_ESTABLISHED::YES
carol::ipsec statusall::home.*STATE_QUICK_I2.*IPsec SA established::YES
dave::ipsec statusall::home.*IKE_SA_ESTABLISHED::YES
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::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
+22
View File
@@ -0,0 +1,22 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
strictcrlpolicy=no
plutostart=no
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
conn home
left=PH_IP_DAVE
leftnexthop=%direct
leftcert=daveCert.pem
[email protected]
right=PH_IP_MOON
[email protected]
rightsubnet=10.1.0.0/16
keyexchange=ikev2
auto=add
+20
View File
@@ -0,0 +1,20 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutodebug=control
crlcheckinterval=180
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
conn rw
left=PH_IP_MOON
leftnexthop=%direct
leftcert=moonCert.pem
[email protected]
leftsubnet=10.1.0.0/16
right=%any
auto=add
+3
View File
@@ -0,0 +1,3 @@
moon::ipsec stop
carol::ipsec stop
dave::ipsec stop
+8
View File
@@ -0,0 +1,8 @@
moon::echo 1 > /proc/sys/net/ipv4/ip_forward
moon::ipsec start
carol::ipsec start
dave::ipsec start
carol::sleep 1
carol::ipsec up home
dave::ipsec up home
dave::sleep 1
+21
View File
@@ -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"
# UML instances on which IPsec is started
# Used for IPsec logging purposes
#
IPSECHOSTS="moon carol dave"
@@ -0,0 +1,7 @@
A connection between the subnets behind the gateways <b>moon</b> and <b>sun</b>
is set up using the IKEv2 key exchange protocol whereas the roadwarrior <b>carol</b>
negotiates the connection via the IKEv1 protocol.
In order to test the established tunnels, client <b>alice</b> behind gateway <b>moon</b>
pings client <b>bob</b> located behind gateway <b>sun</b> and roadwarrior <b>carol</b>
pings the client <b>alice</b> behind <b>moon</b>.
.
@@ -0,0 +1,10 @@
moon::ipsec statusall::net-net.*IKE_SA_ESTABLISHED::YES
sun::ipsec statusall::net-net.*IKE_SA_ESTABLISHED::YES
alice::ping -c 1 PH_IP_BOB::64 bytes from PH_IP_BOB: icmp_seq=1::YES
sun::tcpdump::IP moon.strongswan.org > sun.strongswan.org: ESP::YES
sun::tcpdump::IP sun.strongswan.org > moon.strongswan.org: ESP::YES
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
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
moon::tcpdump::IP moon.strongswan.org > carol.strongswan.org: ESP::YES
+28
View File
@@ -0,0 +1,28 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutodebug=control
crlcheckinterval=180
conn %default
ikelifetime=60m
keylife=20m
left=PH_IP_MOON
leftnexthop=%direct
leftcert=moonCert.pem
[email protected]
leftsubnet=10.1.0.0/16
conn net-net
right=PH_IP_SUN
[email protected]
rightsubnet=10.2.0.0/16
keyexchange=ikev2
auto=add
conn rw
right=%any
[email protected]
keyexchange=ikev1
auto=add
+15
View File
@@ -0,0 +1,15 @@
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutostart=no
conn net-net
left=PH_IP_SUN
leftcert=sunCert.pem
[email protected]
leftsubnet=10.2.0.0/16
right=PH_IP_MOON
[email protected]
rightsubnet=10.1.0.0/16
keyexchange=ikev2
auto=add
@@ -0,0 +1,3 @@
carol::ipsec stop
moon::ipsec stop
sun::ipsec stop
@@ -0,0 +1,9 @@
moon::echo 1 > /proc/sys/net/ipv4/ip_forward
sun::echo 1 > /proc/sys/net/ipv4/ip_forward
moon::ipsec start
sun::ipsec start
carol::ipsec start
moon::sleep 1
moon::ipsec up net-net
carol::ipsec up home
moon::sleep 1
+21
View File
@@ -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 winnetou sun bob"
# Corresponding block diagram
#
DIAGRAM="a-m-w-s-b.png"
# UML instances on which tcpdump is to be started
#
TCPDUMPHOSTS="moon sun"
# UML instances on which IPsec is started
# Used for IPsec logging purposes
#
IPSECHOSTS="carol moon sun"