mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-04 00:00:14 -04:00
added
This commit is contained in:
parent
a4dcb7ded6
commit
f9aa9e2977
6
testing/tests/ikev2/net2net-psk/description.txt
Normal file
6
testing/tests/ikev2/net2net-psk/description.txt
Normal file
@ -0,0 +1,6 @@
|
||||
A connection between the subnets behind the gateways <b>moon</b> and <b>sun</b> is set up.
|
||||
The authentication is based on <b>Preshared Keys</b> (PSK). Upon the successful
|
||||
establishment of the IPsec tunnel, <b>leftfirewall=yes</b> automatically
|
||||
inserts iptables-based firewall rules that let pass the tunneled traffic.
|
||||
In order to test both tunnel and firewall, client <b>alice</b> behind gateway <b>moon</b>
|
||||
pings client <b>bob</b> located behind gateway <b>sun</b>.
|
5
testing/tests/ikev2/net2net-psk/evaltest.dat
Normal file
5
testing/tests/ikev2/net2net-psk/evaltest.dat
Normal file
@ -0,0 +1,5 @@
|
||||
moon::ipsec statusall::net-net.*ESTABLISHED::YES
|
||||
sun::ipsec statusall::net-net.*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
|
23
testing/tests/ikev2/net2net-psk/hosts/moon/etc/ipsec.conf
Executable file
23
testing/tests/ikev2/net2net-psk/hosts/moon/etc/ipsec.conf
Executable file
@ -0,0 +1,23 @@
|
||||
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||
|
||||
config setup
|
||||
plutostart=no
|
||||
|
||||
conn %default
|
||||
ikelifetime=60m
|
||||
keylife=20m
|
||||
rekeymargin=3m
|
||||
keyingtries=1
|
||||
authby=secret
|
||||
keyexchange=ikev2
|
||||
|
||||
conn net-net
|
||||
left=PH_IP_MOON
|
||||
leftsubnet=10.1.0.0/16
|
||||
leftid=@moon.strongswan.org
|
||||
leftnexthop=%direct
|
||||
leftfirewall=yes
|
||||
right=PH_IP_SUN
|
||||
rightsubnet=10.2.0.0/16
|
||||
rightid=@sun.strongswan.org
|
||||
auto=add
|
12
testing/tests/ikev2/net2net-psk/hosts/moon/etc/ipsec.secrets
Normal file
12
testing/tests/ikev2/net2net-psk/hosts/moon/etc/ipsec.secrets
Normal file
@ -0,0 +1,12 @@
|
||||
# /etc/ipsec.secrets - strongSwan IPsec secrets file
|
||||
|
||||
@moon.strongswan.org @sun.strongswan.org : PSK 0sv+NkxY9LLZvwj4qCC2o/gGrWDF2d21jL
|
||||
|
||||
@moon.strongswan.org %any : PSK 0x45a30759df97dc26a15b88ff
|
||||
|
||||
@sun.strongswan.org : PSK "This is a strong password"
|
||||
|
||||
: PSK 'My "home" is my "castle"!'
|
||||
|
||||
192.168.0.1 : PSK "Andi's home"
|
||||
|
23
testing/tests/ikev2/net2net-psk/hosts/sun/etc/ipsec.conf
Executable file
23
testing/tests/ikev2/net2net-psk/hosts/sun/etc/ipsec.conf
Executable file
@ -0,0 +1,23 @@
|
||||
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||
|
||||
config setup
|
||||
plutostart=no
|
||||
|
||||
conn %default
|
||||
ikelifetime=60m
|
||||
keylife=20m
|
||||
rekeymargin=3m
|
||||
keyingtries=1
|
||||
authby=secret
|
||||
keyexchange=ikev2
|
||||
|
||||
conn net-net
|
||||
left=PH_IP_SUN
|
||||
leftsubnet=10.2.0.0/16
|
||||
leftid=@sun.strongswan.org
|
||||
leftfirewall=yes
|
||||
leftnexthop=%direct
|
||||
right=PH_IP_MOON
|
||||
rightsubnet=10.1.0.0/16
|
||||
rightid=@moon.strongswan.org
|
||||
auto=add
|
@ -0,0 +1,7 @@
|
||||
# /etc/ipsec.secrets - strongSwan IPsec secrets file
|
||||
|
||||
@moon.strongswan.org @sun.strongswan.org : PSK 0sv+NkxY9LLZvwj4qCC2o/gGrWDF2d21jL
|
||||
|
||||
|
||||
|
||||
|
6
testing/tests/ikev2/net2net-psk/posttest.dat
Normal file
6
testing/tests/ikev2/net2net-psk/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
|
9
testing/tests/ikev2/net2net-psk/pretest.dat
Normal file
9
testing/tests/ikev2/net2net-psk/pretest.dat
Normal file
@ -0,0 +1,9 @@
|
||||
moon::/etc/init.d/iptables start 2> /dev/null
|
||||
sun::/etc/init.d/iptables start 2> /dev/null
|
||||
moon::rm /etc/ipsec.d/cacerts/*
|
||||
sun::rm /etc/ipsec.d/cacerts/*
|
||||
moon::ipsec start
|
||||
sun::ipsec start
|
||||
moon::sleep 1
|
||||
moon::ipsec up net-net
|
||||
moon::sleep 1
|
21
testing/tests/ikev2/net2net-psk/test.conf
Normal file
21
testing/tests/ikev2/net2net-psk/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