adapted IKEv2 scenarios to new crypto proposal output
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
||||||
<b>AES_CBC-256/AES_XCBC_96</b> by defining <b>esp=aes256-aesxcbc-modp2048</b>
|
<b>AES_CBC_256 / AES_XCBC_96</b> by defining <b>esp=aes256-aesxcbc-modp2048</b>
|
||||||
in ipsec.conf. The same cipher suite is used for IKE: <b>ike=aes256-aesxcbc-modp2048</b>.
|
in ipsec.conf. The same cipher suite is used for IKE: <b>ike=aes256-aesxcbc-modp2048</b>.
|
||||||
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
moon::ipsec statusall::rw.*INSTALLED::YES
|
moon::ipsec statusall::rw.*INSTALLED::YES
|
||||||
carol::ipsec statusall::home.*INSTALLED::YES
|
carol::ipsec statusall::home.*INSTALLED::YES
|
||||||
moon::ipsec statusall::rw.*IKE proposal.*AES_CBC-256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
moon::ipsec statusall::rw.*IKE proposal.*AES_CBC_256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
||||||
carol::ipsec statusall::home.*IKE proposal.*AES_CBC-256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
carol::ipsec statusall::home.*IKE proposal.*AES_CBC_256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
||||||
moon::ipsec statusall::rw.*AES_CBC-256/AES_XCBC_96,::YES
|
moon::ipsec statusall::rw.*AES_CBC_256/AES_XCBC_96,::YES
|
||||||
carol::ipsec statusall::home.*AES_CBC-256/AES_XCBC_96,::YES
|
carol::ipsec statusall::home.*AES_CBC_256/AES_XCBC_96,::YES
|
||||||
moon::ip xfrm state::auth xcbc(aes)::YES
|
moon::ip xfrm state::auth xcbc(aes)::YES
|
||||||
carol::ip xfrm state::auth xcbc(aes)::YES
|
carol::ip xfrm state::auth xcbc(aes)::YES
|
||||||
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
The roadwarriors <b>carol</b> and <b>dave</b> set up a connection each
|
||||||
|
to gateway <b>moon</b> using <b>Blowfish</b> for both IKE and ESP
|
||||||
|
encryption. Upon the successful establishment of the IPsec tunnels, <b>leftfirewall=yes</b>
|
||||||
|
automatically inserts iptables-based firewall rules that let pass the tunneled traffic.
|
||||||
|
In order to test both tunnel and firewall, both <b>carol</b> and <b>dave</b> ping
|
||||||
|
the client <b>alice</b> behind the gateway <b>moon</b>.
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
||||||
|
carol::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
|
carol::ipsec statusall::IKE proposal: BLOWFISH_CBC_256::YES
|
||||||
|
carol::ipsec statusall::BLOWFISH_CBC_192.*,::YES
|
||||||
|
carol::ip -s xfrm state::enc cbc(blowfish).*(192 bits)::YES
|
||||||
|
dave::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
|
dave::ipsec statusall::IKE proposal: BLOWFISH_CBC_128::YES
|
||||||
|
dave::ipsec statusall::BLOWFISH_CBC_128.*,::YES
|
||||||
|
dave::ip -s xfrm state::enc cbc(blowfish).*(128 bits)::YES
|
||||||
|
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
|
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
|
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
|
||||||
|
moon::tcpdump::IP moon.strongswan.org > carol.strongswan.org: ESP::YES
|
||||||
|
moon::tcpdump::IP dave.strongswan.org > moon.strongswan.org: ESP::YES
|
||||||
|
moon::tcpdump::IP moon.strongswan.org > dave.strongswan.org: ESP::YES
|
||||||
|
|
||||||
+8
-4
@@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
config setup
|
config setup
|
||||||
crlcheckinterval=180
|
crlcheckinterval=180
|
||||||
strictcrlpolicy=yes
|
strictcrlpolicy=no
|
||||||
plutostart=no
|
plutostart=no
|
||||||
|
charondebug="enc 4, ike 4"
|
||||||
|
|
||||||
conn %default
|
conn %default
|
||||||
ikelifetime=60m
|
ikelifetime=60m
|
||||||
@@ -11,12 +12,15 @@ conn %default
|
|||||||
rekeymargin=3m
|
rekeymargin=3m
|
||||||
keyingtries=1
|
keyingtries=1
|
||||||
keyexchange=ikev2
|
keyexchange=ikev2
|
||||||
|
ike=blowfish256-sha512-modp2048!
|
||||||
|
esp=blowfish192-sha256!
|
||||||
|
|
||||||
|
conn home
|
||||||
left=PH_IP_CAROL
|
left=PH_IP_CAROL
|
||||||
leftcert=carolCert.pem
|
leftcert=carolCert.pem
|
||||||
[email protected]
|
[email protected]
|
||||||
|
leftfirewall=yes
|
||||||
conn home
|
|
||||||
right=PH_IP_MOON
|
right=PH_IP_MOON
|
||||||
rightsubnet=10.1.0.0/16
|
|
||||||
[email protected]
|
[email protected]
|
||||||
|
rightsubnet=10.1.0.0/16
|
||||||
auto=add
|
auto=add
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# /etc/strongswan.conf - strongSwan configuration file
|
||||||
|
|
||||||
|
charon {
|
||||||
|
dh_exponent_ansi_x9_42 = no
|
||||||
|
load = aes des blowfish md5 sha1 sha2 gmp curl random x509 pubkey hmac stroke kernel-netlink updown
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# /etc/ipsec.conf - strongSwan IPsec configuration file
|
||||||
|
|
||||||
|
config setup
|
||||||
|
crlcheckinterval=180
|
||||||
|
strictcrlpolicy=no
|
||||||
|
plutostart=no
|
||||||
|
|
||||||
|
conn %default
|
||||||
|
ikelifetime=60m
|
||||||
|
keylife=20m
|
||||||
|
rekeymargin=3m
|
||||||
|
keyingtries=1
|
||||||
|
keyexchange=ikev2
|
||||||
|
ike=blowfish128-sha256-modp1536!
|
||||||
|
esp=blowfish128-sha1!
|
||||||
|
|
||||||
|
conn home
|
||||||
|
left=PH_IP_DAVE
|
||||||
|
leftcert=daveCert.pem
|
||||||
|
[email protected]
|
||||||
|
leftfirewall=yes
|
||||||
|
right=PH_IP_MOON
|
||||||
|
[email protected]
|
||||||
|
rightsubnet=10.1.0.0/16
|
||||||
|
auto=add
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# /etc/strongswan.conf - strongSwan configuration file
|
||||||
|
|
||||||
|
charon {
|
||||||
|
dh_exponent_ansi_x9_42 = no
|
||||||
|
load = aes des blowfish md5 sha1 sha2 gmp curl random x509 pubkey hmac stroke kernel-netlink updown
|
||||||
|
}
|
||||||
+7
-15
@@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
config setup
|
config setup
|
||||||
crlcheckinterval=180
|
crlcheckinterval=180
|
||||||
strictcrlpolicy=yes
|
strictcrlpolicy=no
|
||||||
plutostart=no
|
plutostart=no
|
||||||
|
charondebug="enc 4, ike 4, cfg 2"
|
||||||
|
|
||||||
conn %default
|
conn %default
|
||||||
ikelifetime=60m
|
ikelifetime=60m
|
||||||
@@ -11,23 +12,14 @@ conn %default
|
|||||||
rekeymargin=3m
|
rekeymargin=3m
|
||||||
keyingtries=1
|
keyingtries=1
|
||||||
keyexchange=ikev2
|
keyexchange=ikev2
|
||||||
|
ike=blowfish256-sha512-modp2048,blowfish128-sha256-modp1536!
|
||||||
|
esp=blowfish192-sha256,blowfish128-sha1!
|
||||||
|
|
||||||
|
conn rw
|
||||||
left=PH_IP_MOON
|
left=PH_IP_MOON
|
||||||
leftcert=moonCert.pem
|
leftcert=moonCert.pem
|
||||||
[email protected]
|
[email protected]
|
||||||
|
|
||||||
conn net-net
|
|
||||||
leftsubnet=10.1.0.0/16
|
|
||||||
right=PH_IP_SUN
|
|
||||||
rightsubnet=10.2.0.0/16
|
|
||||||
[email protected]
|
|
||||||
auto=add
|
|
||||||
|
|
||||||
conn host-host
|
|
||||||
right=PH_IP_SUN
|
|
||||||
[email protected]
|
|
||||||
auto=add
|
|
||||||
|
|
||||||
conn rw
|
|
||||||
leftsubnet=10.1.0.0/16
|
leftsubnet=10.1.0.0/16
|
||||||
|
leftfirewall=yes
|
||||||
right=%any
|
right=%any
|
||||||
auto=add
|
auto=add
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# /etc/strongswan.conf - strongSwan configuration file
|
||||||
|
|
||||||
|
charon {
|
||||||
|
dh_exponent_ansi_x9_42 = no
|
||||||
|
load = aes des blowfish md5 sha1 sha2 gmp curl random x509 pubkey hmac stroke kernel-netlink updown
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
moon::ipsec stop
|
||||||
|
carol::ipsec stop
|
||||||
|
dave::ipsec stop
|
||||||
|
moon::/etc/init.d/iptables stop 2> /dev/null
|
||||||
|
carol::/etc/init.d/iptables stop 2> /dev/null
|
||||||
|
dave::/etc/init.d/iptables stop 2> /dev/null
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
moon::/etc/init.d/iptables start 2> /dev/null
|
||||||
|
carol::/etc/init.d/iptables start 2> /dev/null
|
||||||
|
dave::/etc/init.d/iptables start 2> /dev/null
|
||||||
|
moon::ipsec start
|
||||||
|
carol::ipsec start
|
||||||
|
dave::ipsec start
|
||||||
|
carol::sleep 1
|
||||||
|
carol::ipsec up home
|
||||||
|
dave::ipsec up home
|
||||||
+4
-4
@@ -5,17 +5,17 @@
|
|||||||
|
|
||||||
# All UML instances that are required for this test
|
# All UML instances that are required for this test
|
||||||
#
|
#
|
||||||
UMLHOSTS="moon carol winnetou"
|
UMLHOSTS="alice moon carol winnetou dave"
|
||||||
|
|
||||||
# Corresponding block diagram
|
# Corresponding block diagram
|
||||||
#
|
#
|
||||||
DIAGRAM="m-c-w.png"
|
DIAGRAM="a-m-c-w-d.png"
|
||||||
|
|
||||||
# UML instances on which tcpdump is to be started
|
# UML instances on which tcpdump is to be started
|
||||||
#
|
#
|
||||||
TCPDUMPHOSTS=""
|
TCPDUMPHOSTS="moon"
|
||||||
|
|
||||||
# UML instances on which IPsec is started
|
# UML instances on which IPsec is started
|
||||||
# Used for IPsec logging purposes
|
# Used for IPsec logging purposes
|
||||||
#
|
#
|
||||||
IPSECHOSTS="moon carol"
|
IPSECHOSTS="moon carol dave"
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
By setting <b>strictcrlpolicy=yes</b>, a <b>strict CRL policy</b> is enforced on
|
|
||||||
both roadwarrior <b>carol</b> and gateway <b>moon</b>.
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
|
||||||
carol::ipsec statusall::home.*ESTABLISHED::YES
|
|
||||||
moon::ipsec listcrls:: ok::YES
|
|
||||||
carol::ipsec listcrls:: ok::YES
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
moon::ipsec stop
|
|
||||||
carol::ipsec stop
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
moon::ipsec start
|
|
||||||
carol::ipsec start
|
|
||||||
carol::sleep 1
|
|
||||||
carol::ipsec up home
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
||||||
<b>AES_CCM_12-128</b> by defining <b>esp=aes128gcm12-modp2048</b> or alternatively
|
<b>AES_CCM_12_128</b> by defining <b>esp=aes128ccm12-modp2048</b> or alternatively
|
||||||
<b>esp=aes128gcm96-modp2048</b> in ipsec.conf.
|
<b>esp=aes128ccm96-modp2048</b> in ipsec.conf.
|
||||||
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
moon::ipsec statusall::rw.*INSTALLED::YES
|
moon::ipsec statusall::rw.*INSTALLED::YES
|
||||||
carol::ipsec statusall::home.*INSTALLED::YES
|
carol::ipsec statusall::home.*INSTALLED::YES
|
||||||
moon::ipsec statusall::AES_CCM_12-128::YES
|
moon::ipsec statusall::AES_CCM_12_128::YES
|
||||||
carol::ipsec statusall::AES_CCM_12-128::YES
|
carol::ipsec statusall::AES_CCM_12_128::YES
|
||||||
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
||||||
<b>AES_GCM_16-256</b> by defining <b>esp=aes256gcm16-modp2048</b> or alternatively
|
<b>AES_GCM_16_256</b> by defining <b>esp=aes256gcm16-modp2048</b> or alternatively
|
||||||
<b>esp=aes256gcm128-modp2048</b> in ipsec.conf.
|
<b>esp=aes256gcm128-modp2048</b> in ipsec.conf.
|
||||||
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
moon::ipsec statusall::rw.*INSTALLED::YES
|
moon::ipsec statusall::rw.*INSTALLED::YES
|
||||||
carol::ipsec statusall::home.*INSTALLED::YES
|
carol::ipsec statusall::home.*INSTALLED::YES
|
||||||
moon::ipsec statusall::AES_GCM_16-256::YES
|
moon::ipsec statusall::AES_GCM_16_256::YES
|
||||||
carol::ipsec statusall::AES_GCM_16-256::YES
|
carol::ipsec statusall::AES_GCM_16_256::YES
|
||||||
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
||||||
<b>CAMELLIA_CBC-192/HMAC_SHA1_96</b> by defining <b>esp=camellia192-sha1</b> in ipsec.conf.
|
<b>CAMELLIA_CBC_192 / HMAC_SHA1_96</b> by defining <b>esp=camellia192-sha1</b> in ipsec.conf.
|
||||||
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
moon::ipsec statusall::rw.*INSTALLED::YES
|
moon::ipsec statusall::rw.*INSTALLED::YES
|
||||||
carol::ipsec statusall::home.*INSTALLED::YES
|
carol::ipsec statusall::home.*INSTALLED::YES
|
||||||
moon::ipsec statusall::CAMELLIA_CBC-192/HMAC_SHA1_96::YES
|
moon::ipsec statusall::CAMELLIA_CBC_192/HMAC_SHA1_96::YES
|
||||||
carol::ipsec statusall::CAMELLIA_CBC-192/HMAC_SHA1_96::YES
|
carol::ipsec statusall::CAMELLIA_CBC_192/HMAC_SHA1_96::YES
|
||||||
moon::ip xfrm state::enc cbc(camellia)::YES
|
moon::ip xfrm state::enc cbc(camellia)::YES
|
||||||
carol::ip xfrm state::enc cbc(camellia)::YES
|
carol::ip xfrm state::enc cbc(camellia)::YES
|
||||||
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
||||||
<b>NULL/HMAC_SHA1_96</b> by defining <b>esp=null-sha1</b> in ipsec.conf.
|
<b>NULL / HMAC_SHA1_96</b> by defining <b>esp=null-sha1</b> in ipsec.conf.
|
||||||
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
||||||
carol::ipsec statusall::home.*ESTABLISHED::YES
|
carol::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
carol::ipsec statusall::IKE proposal: BLOWFISH-256::YES
|
carol::ipsec statusall::IKE proposal: BLOWFISH_CBC_256::YES
|
||||||
carol::ipsec statusall::BLOWFISH-192.*,::YES
|
carol::ipsec statusall::BLOWFISH_CBC_192.*,::YES
|
||||||
carol::ip -s xfrm state::enc cbc(blowfish).*(192 bits)::YES
|
carol::ip -s xfrm state::enc cbc(blowfish).*(192 bits)::YES
|
||||||
dave::ipsec statusall::home.*ESTABLISHED::YES
|
dave::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
dave::ipsec statusall::IKE proposal: BLOWFISH-128::YES
|
dave::ipsec statusall::IKE proposal: BLOWFISH_CBC_128::YES
|
||||||
dave::ipsec statusall::BLOWFISH-128.*,::YES
|
dave::ipsec statusall::BLOWFISH_CBC_128.*,::YES
|
||||||
dave::ip -s xfrm state::enc cbc(blowfish).*(128 bits)::YES
|
dave::ip -s xfrm state::enc cbc(blowfish).*(128 bits)::YES
|
||||||
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ carol::cat /var/log/daemon.log::ECP_256.*ECP_384::YES
|
|||||||
dave::cat /var/log/daemon.log::ECP_256.*ECP_521::YES
|
dave::cat /var/log/daemon.log::ECP_256.*ECP_521::YES
|
||||||
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
||||||
carol::ipsec statusall::home.*ESTABLISHED::YES
|
carol::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
carol::ipsec statusall::home.*AES_CBC-192/AUTH_HMAC_SHA2_384_192/PRF_HMAC_SHA2_384/ECP_384::YES
|
carol::ipsec statusall::home.*AES_CBC_192/HMAC_SHA2_384_192/PRF_HMAC_SHA2_384/ECP_384::YES
|
||||||
dave::ipsec statusall::home.*ESTABLISHED::YES
|
dave::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
dave::ipsec statusall::home.*AES_CBC-256/AUTH_HMAC_SHA2_512_256/PRF_HMAC_SHA2_512/ECP_521::YES
|
dave::ipsec statusall::home.*AES_CBC_256/HMAC_SHA2_512_256/PRF_HMAC_SHA2_512/ECP_521::YES
|
||||||
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
|
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ carol::cat /var/log/daemon.log::ECP_192.*ECP_224::YES
|
|||||||
dave::cat /var/log/daemon.log::ECP_192.*ECP_256::YES
|
dave::cat /var/log/daemon.log::ECP_192.*ECP_256::YES
|
||||||
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
moon::ipsec statusall::rw.*ESTABLISHED::YES
|
||||||
carol::ipsec statusall::home.*ESTABLISHED::YES
|
carol::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
carol::ipsec statusall::home.*AES_CBC-128/AUTH_HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/ECP_224::YES
|
carol::ipsec statusall::home.*AES_CBC_128/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/ECP_224::YES
|
||||||
dave::ipsec statusall::home.*ESTABLISHED::YES
|
dave::ipsec statusall::home.*ESTABLISHED::YES
|
||||||
dave::ipsec statusall::home.*AES_CBC-128/AUTH_HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/ECP_256::YES
|
dave::ipsec statusall::home.*AES_CBC_128/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/ECP_256::YES
|
||||||
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
carol::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
dave::ping -c 1 PH_IP_ALICE::64 bytes from PH_IP_ALICE: icmp_seq=1::YES
|
||||||
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
|
moon::tcpdump::IP carol.strongswan.org > moon.strongswan.org: ESP::YES
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
Roadwarrior <b>carol</b> proposes to gateway <b>moon</b> the ESP cipher suite
|
||||||
<b>AES_CBC-256/AES_XCBC_96</b> by defining <b>esp=aes256-aesxcbc-modp2048</b>
|
<b>AES_CBC_256 / AES_XCBC_96</b> by defining <b>esp=aes256-aesxcbc-modp2048</b>
|
||||||
in ipsec.conf. The same cipher suite is used for IKE: <b>ike=aes256-aesxcbc-modp2048</b>.
|
in ipsec.conf. The same cipher suite is used for IKE: <b>ike=aes256-aesxcbc-modp2048</b>.
|
||||||
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
A ping from <b>carol</b> to <b>alice</b> successfully checks the established tunnel.
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
moon::ipsec statusall::rw.*INSTALLED::YES
|
moon::ipsec statusall::rw.*INSTALLED::YES
|
||||||
carol::ipsec statusall::home.*INSTALLED::YES
|
carol::ipsec statusall::home.*INSTALLED::YES
|
||||||
moon::ipsec statusall::rw.*IKE proposal.*AES_CBC-256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
moon::ipsec statusall::rw.*IKE proposal.*AES_CBC_256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
||||||
carol::ipsec statusall::home.*IKE proposal.*AES_CBC-256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
carol::ipsec statusall::home.*IKE proposal.*AES_CBC_256/AES_XCBC_96/PRF_AES128_CBC/MODP_2048::YES
|
||||||
moon::ipsec statusall::rw.*AES_CBC-256/AES_XCBC_96,::YES
|
moon::ipsec statusall::rw.*AES_CBC_256/AES_XCBC_96,::YES
|
||||||
carol::ipsec statusall::home.*AES_CBC-256/AES_XCBC_96,::YES
|
carol::ipsec statusall::home.*AES_CBC_256/AES_XCBC_96,::YES
|
||||||
moon::ip xfrm state::auth xcbc(aes)::YES
|
moon::ip xfrm state::auth xcbc(aes)::YES
|
||||||
carol::ip xfrm state::auth xcbc(aes)::YES
|
carol::ip xfrm state::auth xcbc(aes)::YES
|
||||||
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
carol::ping -c 1 -s 120 -p deadbeef 10.1.0.10::128 bytes from 10.1.0.10: icmp_seq=1::YES
|
||||||
|
|||||||
Reference in New Issue
Block a user