mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-05 00:00:45 -04:00
added host2host-transport scenario
This commit is contained in:
parent
81a65f7b1f
commit
09cbc4740a
4
testing/tests/ikev2/host2host-transport/description.txt
Normal file
4
testing/tests/ikev2/host2host-transport/description.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
An IPsec <b>transport-mode</b> connection between the hosts <b>moon</b> and <b>sun</b> is
|
||||||
|
successfully set up. <b>leftfirewall=yes</b> automatically inserts iptables-based firewall
|
||||||
|
rules that let pass the decrypted IP packets. In order to test the host-to-host connection
|
||||||
|
<b>moon</b> pings <b>sun</b>.
|
5
testing/tests/ikev2/host2host-transport/evaltest.dat
Normal file
5
testing/tests/ikev2/host2host-transport/evaltest.dat
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
moon::ipsec status::host-host.*ESTABLISHED::YES
|
||||||
|
sun::ipsec status::host-host.*ESTABLISHED::YES
|
||||||
|
moon::ping -c 1 PH_IP_SUN::64 bytes from PH_IP_SUN: 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/host2host-transport/hosts/moon/etc/ipsec.conf
Executable file
23
testing/tests/ikev2/host2host-transport/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
|
||||||
|
keyexchange=ikev2
|
||||||
|
leftnexthop=%direct
|
||||||
|
|
||||||
|
conn host-host
|
||||||
|
left=PH_IP_MOON
|
||||||
|
leftcert=moonCert.pem
|
||||||
|
leftid=@moon.strongswan.org
|
||||||
|
leftfirewall=yes
|
||||||
|
right=PH_IP_SUN
|
||||||
|
rightid=@sun.strongswan.org
|
||||||
|
type=transport
|
||||||
|
auto=add
|
24
testing/tests/ikev2/host2host-transport/hosts/sun/etc/ipsec.conf
Executable file
24
testing/tests/ikev2/host2host-transport/hosts/sun/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
|
||||||
|
keyexchange=ikev2
|
||||||
|
leftnexthop=%direct
|
||||||
|
|
||||||
|
conn host-host
|
||||||
|
left=PH_IP_SUN
|
||||||
|
leftcert=sunCert.pem
|
||||||
|
leftid=@sun.strongswan.org
|
||||||
|
leftfirewall=yes
|
||||||
|
right=PH_IP_MOON
|
||||||
|
rightid=@moon.strongswan.org
|
||||||
|
type=transport
|
||||||
|
auto=add
|
||||||
|
|
6
testing/tests/ikev2/host2host-transport/posttest.dat
Normal file
6
testing/tests/ikev2/host2host-transport/posttest.dat
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
moon::iptables -v -n -L
|
||||||
|
sun::iptables -v -n -L
|
||||||
|
moon::ipsec stop
|
||||||
|
sun::ipsec stop
|
||||||
|
moon::/etc/init.d/iptables stop 2> /dev/null
|
||||||
|
sun::/etc/init.d/iptables stop 2> /dev/null
|
6
testing/tests/ikev2/host2host-transport/pretest.dat
Normal file
6
testing/tests/ikev2/host2host-transport/pretest.dat
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
moon::/etc/init.d/iptables start 2> /dev/null
|
||||||
|
sun::/etc/init.d/iptables start 2> /dev/null
|
||||||
|
moon::ipsec start
|
||||||
|
sun::ipsec start
|
||||||
|
moon::sleep 2
|
||||||
|
moon::ipsec up host-host
|
21
testing/tests/ikev2/host2host-transport/test.conf
Normal file
21
testing/tests/ikev2/host2host-transport/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="moon winnetou sun"
|
||||||
|
|
||||||
|
# Corresponding block diagram
|
||||||
|
#
|
||||||
|
DIAGRAM="m-w-s.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