1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/testing/guestbin/swan-prep --hostkeys
Creating NSS database containing host keys
west #
# confirm that the network is alive
west #
../../guestbin/wait-until-alive -I 192.0.1.254 192.0.2.254
destination -I 192.0.1.254 192.0.2.254 is alive
west #
# ensure that clear text does not get through
west #
iptables -A INPUT -i eth1 -s 192.0.2.0/24 -j DROP
west #
iptables -I INPUT -m policy --dir in --pol ipsec -j ACCEPT
west #
# confirm clear text does not get through
west #
../../guestbin/ping-once.sh --down -I 192.0.1.254 192.0.2.254
down
west #
../../guestbin/ip.sh address add 192.0.11.254/24 dev eth1
west #
ipsec start
Redirecting to: [initsystem]
west #
../../guestbin/wait-until-pluto-started
west #
ipsec whack --impair suppress_retransmits
west #
ipsec auto --add westnets-eastnet
"westnets-eastnet/1x0": added IKEv1 connection
"westnets-eastnet/2x0": added IKEv1 connection
west #
echo "initdone"
initdone
west #
ipsec auto --up westnets-eastnet
initiating all connections with alias "westnets-eastnet"
"westnets-eastnet/1x0" #1: initiating IKEv1 Main Mode connection
"westnets-eastnet/1x0" #1: sent Main Mode request
"westnets-eastnet/2x0": queue IPsec SA; waiting on ISAKMP SA "westnets-eastnet/1x0" #1 negotiating with 192.1.2.23
initiating 2 connections
"westnets-eastnet/1x0" #1: sent Main Mode I2
"westnets-eastnet/1x0" #1: sent Main Mode I3
"westnets-eastnet/1x0" #1: Peer ID is ID_FQDN: '@east'
"westnets-eastnet/1x0" #1: authenticated peer using preloaded certificate '@east' and 2nnn-bit RSA with SHA1 signature
"westnets-eastnet/1x0" #1: ISAKMP SA established {auth=RSA_SIG cipher=AES_CBC_256 integ=HMAC_SHA2_256 group=MODP2048}
"westnets-eastnet/1x0" #2: initiating Quick Mode IKEv1+RSASIG+ENCRYPT+TUNNEL+PFS+UP+IKE_FRAG_ALLOW+ESN_NO+ESN_YES
"westnets-eastnet/2x0" #3: initiating Quick Mode IKEv1+RSASIG+ENCRYPT+TUNNEL+PFS+UP+IKE_FRAG_ALLOW+ESN_NO+ESN_YES
"westnets-eastnet/1x0" #2: sent Quick Mode request
"westnets-eastnet/2x0" #3: sent Quick Mode request
"westnets-eastnet/1x0" #2: IPsec SA established tunnel mode {ESP=>0xESPESP <0xESPESP xfrm=AES_CBC_128-HMAC_SHA1_96 DPD=passive}
"westnets-eastnet/2x0" #3: IPsec SA established tunnel mode {ESP=>0xESPESP <0xESPESP xfrm=AES_CBC_128-HMAC_SHA1_96 DPD=passive}
west #
../../guestbin/ping-once.sh --up -I 192.0.1.254 192.0.2.254
up
west #
../../guestbin/ping-once.sh --up -I 192.0.11.254 192.0.2.254
up
west #
ipsec whack --trafficstatus
#2: "westnets-eastnet/1x0", type=ESP, add_time=1234567890, inBytes=84, outBytes=84, maxBytes=2^63B, id='@east'
#3: "westnets-eastnet/2x0", type=ESP, add_time=1234567890, inBytes=84, outBytes=84, maxBytes=2^63B, id='@east'
west #
echo done
done
west #
|