new net2net ipv6 scenarios for IKEv1 and IKEv2
This commit is contained in:
+1
-1
@@ -71,7 +71,7 @@ are required for the strongSwan testing environment:
|
||||
|
||||
* The latest strongSwan distribution
|
||||
|
||||
http://download.strongswan.org/strongswan-4.1.8.tar.gz
|
||||
http://download.strongswan.org/strongswan-4.1.9.tar.gz
|
||||
|
||||
|
||||
3. Creating the environment
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
An IPv6 ESP tunnel connection between the gateways <b>moon</b> and <b>sun</b> is successfully set up.
|
||||
It connects the two subnets hiding behind their respective gateways. The authentication is based on
|
||||
X.509 certificates. In order to test the net-to-net tunnel client <b>alice</b> behind <b>moon</b>
|
||||
sends an IPv6 ICMP request to client <b>bob</b> behind <b>sun</b> using the ping6 command.
|
||||
@@ -0,0 +1,5 @@
|
||||
moon::ipsec status::net-net.*STATE_QUICK_I2.*IPsec SA established::YES
|
||||
sun::ipsec status::net-net.*STATE_QUICK_R2.*IPsec SA established::YES
|
||||
alice::ping6 -c 1 -p deadbeef ip6-bob.strongswan.org::64 bytes from ip6-bob.strongswan.org: icmp_seq=1::YES
|
||||
sun::tcpdump::IP6 ip6-moon.strongswan.org > ip6-sun.strongswan.org: ESP::YES
|
||||
sun::tcpdump::IP6 ip6-sun.strongswan.org > ip6-moon.strongswan.org: ESP::YES
|
||||
@@ -0,0 +1,30 @@
|
||||
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||
|
||||
config setup
|
||||
plutodebug=control
|
||||
crlcheckinterval=180
|
||||
strictcrlpolicy=no
|
||||
charonstart=no
|
||||
|
||||
conn %default
|
||||
ikelifetime=60m
|
||||
keylife=20m
|
||||
rekeymargin=3m
|
||||
keyingtries=1
|
||||
|
||||
conn net-net
|
||||
also=host-host
|
||||
leftsubnet=fec1::0/16
|
||||
rightsubnet=fec2::0/16
|
||||
|
||||
conn host-host
|
||||
left=PH_IP6_MOON
|
||||
leftnexthop=0::0
|
||||
leftcert=moonCert.pem
|
||||
[email protected]
|
||||
leftfirewall=yes
|
||||
right=PH_IP6_SUN
|
||||
rightnexthop=0::0
|
||||
[email protected]
|
||||
auto=add
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||
|
||||
config setup
|
||||
plutodebug=control
|
||||
crlcheckinterval=180
|
||||
strictcrlpolicy=no
|
||||
charonstart=no
|
||||
|
||||
conn %default
|
||||
ikelifetime=60m
|
||||
keylife=20m
|
||||
rekeymargin=3m
|
||||
keyingtries=1
|
||||
|
||||
conn net-net
|
||||
also=host-host
|
||||
leftsubnet=fec2::0/16
|
||||
rightsubnet=fec1::0/16
|
||||
|
||||
conn host-host
|
||||
left=PH_IP6_SUN
|
||||
leftnexthop=0::0
|
||||
leftcert=sunCert.pem
|
||||
[email protected]
|
||||
leftfirewall=yes
|
||||
right=PH_IP6_MOON
|
||||
rightnexthop=0::0
|
||||
[email protected]
|
||||
auto=add
|
||||
@@ -0,0 +1,6 @@
|
||||
moon::ipsec stop
|
||||
sun::ipsec stop
|
||||
alice::"ip route del fec2:\:/16 via fec1:\:1"
|
||||
moon::"ip route del fec2:\:/16 via fec0:\:2"
|
||||
sun::"ip route del fec1:\:/16 via fec0:\:1"
|
||||
bob::"ip route del fec1:\:/16 via fec2:\:1"
|
||||
@@ -0,0 +1,10 @@
|
||||
moon::echo "1" >/proc/sys/net/ipv6/conf/all/forwarding
|
||||
sun::echo "1" >/proc/sys/net/ipv6/conf/all/forwarding
|
||||
alice::"ip route add fec2:\:/16 via fec1:\:1"
|
||||
moon::"ip route add fec2:\:/16 via fec0:\:2"
|
||||
sun::"ip route add fec1:\:/16 via fec0:\:1"
|
||||
bob::"ip route add fec1:\:/16 via fec2:\:1"
|
||||
moon::ipsec start
|
||||
sun::ipsec start
|
||||
moon::sleep 2
|
||||
moon::ipsec up net-net
|
||||
@@ -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"
|
||||
@@ -0,0 +1,4 @@
|
||||
An IPv6 ESP tunnel connection between the gateways <b>moon</b> and <b>sun</b> is successfully set up.
|
||||
It connects the two subnets hiding behind their respective gateways. The authentication is based on
|
||||
X.509 certificates. In order to test the net-to-net tunnel client <b>alice</b> behind <b>moon</b>
|
||||
sends an IPv6 ICMP request to client <b>bob</b> behind <b>sun</b> using the ping6 command.
|
||||
@@ -0,0 +1,5 @@
|
||||
moon::ipsec status::net-net.*INSTALLED::YES
|
||||
sun::ipsec status::net.net.*INSTALLED::YES
|
||||
alice::ping6 -c 1 -p deadbeef ip6-bob.strongswan.org::64 bytes from ip6-bob.strongswan.org: icmp_seq=1::YES
|
||||
sun::tcpdump::IP6 ip6-moon.strongswan.org > ip6-sun.strongswan.org: ESP::YES
|
||||
sun::tcpdump::IP6 ip6-sun.strongswan.org > ip6-moon.strongswan.org: ESP::YES
|
||||
@@ -0,0 +1,27 @@
|
||||
# /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
|
||||
|
||||
conn net-net
|
||||
also=host-host
|
||||
leftsubnet=fec1::0/16
|
||||
rightsubnet=fec2::0/16
|
||||
|
||||
conn host-host
|
||||
left=PH_IP6_MOON
|
||||
leftcert=moonCert.pem
|
||||
[email protected]
|
||||
leftfirewall=yes
|
||||
right=PH_IP6_SUN
|
||||
[email protected]
|
||||
auto=add
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
# /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
|
||||
|
||||
conn net-net
|
||||
also=host-host
|
||||
leftsubnet=fec2::0/16
|
||||
rightsubnet=fec1::0/16
|
||||
|
||||
conn host-host
|
||||
left=PH_IP6_SUN
|
||||
leftcert=sunCert.pem
|
||||
[email protected]
|
||||
leftfirewall=yes
|
||||
right=PH_IP6_MOON
|
||||
[email protected]
|
||||
auto=add
|
||||
@@ -0,0 +1,6 @@
|
||||
moon::ipsec stop
|
||||
sun::ipsec stop
|
||||
alice::"ip route del fec2:\:/16 via fec1:\:1"
|
||||
moon::"ip route del fec2:\:/16 via fec0:\:2"
|
||||
sun::"ip route del fec1:\:/16 via fec0:\:1"
|
||||
bob::"ip route del fec1:\:/16 via fec2:\:1"
|
||||
@@ -0,0 +1,10 @@
|
||||
moon::echo "1" >/proc/sys/net/ipv6/conf/all/forwarding
|
||||
sun::echo "1" >/proc/sys/net/ipv6/conf/all/forwarding
|
||||
alice::"ip route add fec2:\:/16 via fec1:\:1"
|
||||
moon::"ip route add fec2:\:/16 via fec0:\:2"
|
||||
sun::"ip route add fec1:\:/16 via fec0:\:1"
|
||||
bob::"ip route add fec1:\:/16 via fec2:\:1"
|
||||
moon::ipsec start
|
||||
sun::ipsec start
|
||||
moon::sleep 2
|
||||
moon::ipsec up net-net
|
||||
@@ -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"
|
||||
Reference in New Issue
Block a user