mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-04 00:00:14 -04:00
two new test scenarios
This commit is contained in:
parent
1f948f684a
commit
dc8ad57aa9
6
testing/tests/ikev2/net2net-route/description.txt
Normal file
6
testing/tests/ikev2/net2net-route/description.txt
Normal file
@ -0,0 +1,6 @@
|
||||
A tunnel that will connect the subnets behind the gateways <b>moon</b>
|
||||
and <b>sun</b>, respectively, is preconfigured by installing a %trap eroute
|
||||
on gateway <b>moon</b> by means of the setting <b>auto=route</b> in ipsec.conf.
|
||||
A subsequent ping issued by client <b>alice</b> behind gateway <b>moon</b> to
|
||||
<b>bob</b> located behind gateway <b>sun</b> triggers the %trap eroute and
|
||||
leads to the automatic establishment of the subnet-to-subnet tunnel.
|
6
testing/tests/ikev2/net2net-route/evaltest.dat
Normal file
6
testing/tests/ikev2/net2net-route/evaltest.dat
Normal file
@ -0,0 +1,6 @@
|
||||
moon::cat /var/log/auth.log::acquiring CHILD_SA.*IKE_SA setup needed::YES
|
||||
moon::ipsec statusall::net-net.*INSTALLED::YES
|
||||
sun::ipsec statusall::net-net.*INSTALLED::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
|
23
testing/tests/ikev2/net2net-route/hosts/moon/etc/ipsec.conf
Executable file
23
testing/tests/ikev2/net2net-route/hosts/moon/etc/ipsec.conf
Executable file
@ -0,0 +1,23 @@
|
||||
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||
|
||||
config setup
|
||||
strictcrlpolicy=no
|
||||
plutostart=no
|
||||
|
||||
conn %default
|
||||
ikelifetime=60m
|
||||
keylife=20m
|
||||
rekeymargin=3m
|
||||
keyingtries=1
|
||||
leftnexthop=%direct
|
||||
keyexchange=ikev2
|
||||
|
||||
conn net-net
|
||||
left=PH_IP_MOON
|
||||
leftsubnet=10.1.0.0/16
|
||||
leftcert=moonCert.pem
|
||||
leftid=@moon.strongswan.org
|
||||
right=PH_IP_SUN
|
||||
rightsubnet=10.2.0.0/16
|
||||
rightid=@sun.strongswan.org
|
||||
auto=route
|
22
testing/tests/ikev2/net2net-route/hosts/sun/etc/ipsec.conf
Executable file
22
testing/tests/ikev2/net2net-route/hosts/sun/etc/ipsec.conf
Executable 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 net-net
|
||||
left=PH_IP_SUN
|
||||
leftcert=sunCert.pem
|
||||
leftid=@sun.strongswan.org
|
||||
leftsubnet=10.2.0.0/16
|
||||
right=PH_IP_MOON
|
||||
rightid=@moon.strongswan.org
|
||||
rightsubnet=10.1.0.0/16
|
||||
keyexchange=ikev2
|
||||
auto=add
|
2
testing/tests/ikev2/net2net-route/posttest.dat
Normal file
2
testing/tests/ikev2/net2net-route/posttest.dat
Normal file
@ -0,0 +1,2 @@
|
||||
moon::ipsec stop
|
||||
sun::ipsec stop
|
6
testing/tests/ikev2/net2net-route/pretest.dat
Normal file
6
testing/tests/ikev2/net2net-route/pretest.dat
Normal file
@ -0,0 +1,6 @@
|
||||
moon::echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||
sun::echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||
moon::ipsec start
|
||||
sun::ipsec start
|
||||
moon::sleep 2
|
||||
alice::ping -c 10 PH_IP_BOB
|
21
testing/tests/ikev2/net2net-route/test.conf
Normal file
21
testing/tests/ikev2/net2net-route/test.conf
Normal 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="sun"
|
||||
|
||||
# UML instances on which IPsec is started
|
||||
# Used for IPsec logging purposes
|
||||
#
|
||||
IPSECHOSTS="moon sun"
|
5
testing/tests/ikev2/net2net-start/description.txt
Normal file
5
testing/tests/ikev2/net2net-start/description.txt
Normal file
@ -0,0 +1,5 @@
|
||||
A tunnel connecting the subnets behind the gateways <b>moon</b> and <b>sun</b>,
|
||||
respectively, is automatically established by means of the setting
|
||||
<b>auto=start</b> in ipsec.conf. The connection is tested by client <b>alice</b>
|
||||
behind gateway <b>moon</b> pinging the client <b>bob</b> located behind
|
||||
gateway <b>sun</b>.
|
5
testing/tests/ikev2/net2net-start/evaltest.dat
Normal file
5
testing/tests/ikev2/net2net-start/evaltest.dat
Normal file
@ -0,0 +1,5 @@
|
||||
moon::ipsec statusall::net-net.*INSTALLED::YES
|
||||
sun::ipsec statusall::net-net.*INSTALLED::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
|
24
testing/tests/ikev2/net2net-start/hosts/moon/etc/ipsec.conf
Executable file
24
testing/tests/ikev2/net2net-start/hosts/moon/etc/ipsec.conf
Executable file
@ -0,0 +1,24 @@
|
||||
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||
|
||||
config setup
|
||||
strictcrlpolicy=no
|
||||
plutostart=no
|
||||
|
||||
conn %default
|
||||
ikelifetime=60m
|
||||
keylife=20m
|
||||
rekeymargin=3m
|
||||
keyingtries=1
|
||||
leftnexthop=%direct
|
||||
keyexchange=ikev2
|
||||
|
||||
conn net-net
|
||||
left=PH_IP_MOON
|
||||
leftsubnet=10.1.0.0/16
|
||||
leftcert=moonCert.pem
|
||||
leftid=@moon.strongswan.org
|
||||
leftfirewall=yes
|
||||
right=PH_IP_SUN
|
||||
rightsubnet=10.2.0.0/16
|
||||
rightid=@sun.strongswan.org
|
||||
auto=start
|
22
testing/tests/ikev2/net2net-start/hosts/sun/etc/ipsec.conf
Executable file
22
testing/tests/ikev2/net2net-start/hosts/sun/etc/ipsec.conf
Executable 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 net-net
|
||||
left=PH_IP_SUN
|
||||
leftcert=sunCert.pem
|
||||
leftid=@sun.strongswan.org
|
||||
leftsubnet=10.2.0.0/16
|
||||
right=PH_IP_MOON
|
||||
rightid=@moon.strongswan.org
|
||||
rightsubnet=10.1.0.0/16
|
||||
keyexchange=ikev2
|
||||
auto=add
|
2
testing/tests/ikev2/net2net-start/posttest.dat
Normal file
2
testing/tests/ikev2/net2net-start/posttest.dat
Normal file
@ -0,0 +1,2 @@
|
||||
moon::ipsec stop
|
||||
sun::ipsec stop
|
6
testing/tests/ikev2/net2net-start/pretest.dat
Normal file
6
testing/tests/ikev2/net2net-start/pretest.dat
Normal file
@ -0,0 +1,6 @@
|
||||
moon::echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||
sun::echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||
sun::ipsec start
|
||||
sun::sleep 2
|
||||
moon::ipsec start
|
||||
alice::sleep 3
|
21
testing/tests/ikev2/net2net-start/test.conf
Normal file
21
testing/tests/ikev2/net2net-start/test.conf
Normal 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="sun"
|
||||
|
||||
# UML instances on which IPsec is started
|
||||
# Used for IPsec logging purposes
|
||||
#
|
||||
IPSECHOSTS="moon sun"
|
Loading…
x
Reference in New Issue
Block a user