mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-05 00:00:45 -04:00
added firewall support to scenario
This commit is contained in:
parent
1f0b770b0a
commit
66bc2429c6
@ -1,3 +1,4 @@
|
||||
A connection between the hosts <b>moon</b> and <b>sun</b> is set up using IPsec transport mode.
|
||||
The authentication is based on X.509 certificates.
|
||||
In order to test the host-to-host tunnel <b>moon</b> pings <b>sun</b>.
|
||||
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>.
|
||||
|
@ -1,5 +1,5 @@
|
||||
moon::ipsec statusall::host-host.*TRANSPORT::YES
|
||||
sun::ipsec statusall::host-host.*TRANSPORT::YES
|
||||
moon::ipsec status::host-host.*INSTALLED.*TRANSPORT::YES
|
||||
sun::ipsec status::host-host.*INSTALLED.*TRANSPORT::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
|
||||
|
@ -16,6 +16,7 @@ conn host-host
|
||||
leftnexthop=%direct
|
||||
leftcert=moonCert.pem
|
||||
leftid=@moon.strongswan.org
|
||||
leftfirewall=yes
|
||||
right=PH_IP_SUN
|
||||
rightid=@sun.strongswan.org
|
||||
type=transport
|
||||
|
@ -16,6 +16,7 @@ conn host-host
|
||||
leftnexthop=%direct
|
||||
leftcert=sunCert.pem
|
||||
leftid=@sun.strongswan.org
|
||||
leftfirewall=yes
|
||||
right=PH_IP_MOON
|
||||
rightid=@moon.strongswan.org
|
||||
type=transport
|
||||
|
@ -1,2 +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
|
||||
|
@ -1,4 +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 1
|
||||
moon::sleep 2
|
||||
moon::ipsec up host-host
|
||||
|
@ -6,11 +6,11 @@
|
||||
# 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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user