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 68 69 70
|
/testing/guestbin/swan-prep --hostkeys
Creating NSS database containing host keys
east #
ipsec start
Redirecting to: [initsystem]
east #
../../guestbin/wait-until-pluto-started
east #
ipsec auto --add westnet-eastnet-aes256
"westnet-eastnet-aes256": added IKEv1 connection
east #
ipsec auto --status | grep westnet-eastnet-aes256
"westnet-eastnet-aes256": 192.0.2.0/24===192.1.2.23[@east]...192.1.2.45[@west]===192.0.1.0/24; unrouted; my_ip=unset; their_ip=unset;
"westnet-eastnet-aes256": host: oriented; local: 192.1.2.23; remote: 192.1.2.45;
"westnet-eastnet-aes256": my_updown=ipsec _updown;
"westnet-eastnet-aes256": xauth us:none, xauth them:none, my_username=[any]; their_username=[any]
"westnet-eastnet-aes256": our auth:rsasig, their auth:rsasig, our autheap:none, their autheap:none;
"westnet-eastnet-aes256": modecfg info: us:none, them:none, modecfg policy:push, dns:unset, domains:unset, cat:unset;
"westnet-eastnet-aes256": sec_label:unset;
"westnet-eastnet-aes256": ike_life: 28800s; ipsec_life: 28800s; ipsec_max_bytes: 2^63B; ipsec_max_packets: 2^63; replay_window: 128; rekey_margin: 540s; rekey_fuzz: 100%;
"westnet-eastnet-aes256": iptfs: no; fragmentation: yes; packet-size: 0; max-queue-size: 0; drop-time: 0; init-delay: 0; reorder-window: 0;
"westnet-eastnet-aes256": retransmit-interval: 9999ms; retransmit-timeout: 99s; iketcp:no; iketcp-port:4500;
"westnet-eastnet-aes256": initial-contact:no; cisco-unity:no; fake-strongswan:no; send-vendorid:no; send-no-esp-tfc:no;
"westnet-eastnet-aes256": policy: IKEv1+RSASIG+ENCRYPT+TUNNEL+PFS+IKE_FRAG_ALLOW+ESN_NO+ESN_YES;
"westnet-eastnet-aes256": conn_prio: 24,24,0; interface: eth1; metric: 0; mtu: unset; sa_prio:auto; sa_tfc:none;
"westnet-eastnet-aes256": nflog-group: unset; mark: unset; vti-iface:unset; vti-routing:no; vti-shared:no; nic-offload:no;
"westnet-eastnet-aes256": our idtype: ID_FQDN; our id=@east; their idtype: ID_FQDN; their id=@west
"westnet-eastnet-aes256": dpd: passive; delay:0s; timeout:0s
"westnet-eastnet-aes256": nat-traversal: encapsulation:auto; keepalive:20s; ikev1-method:rfc+drafts
"westnet-eastnet-aes256": routing: unrouted;
"westnet-eastnet-aes256": conn serial: $1;
"westnet-eastnet-aes256": IKE algorithms: AES_CBC_256-HMAC_SHA1-MODP2048
"westnet-eastnet-aes256": ESP algorithms: AES_CBC_256-HMAC_SHA1_96
east #
echo "initdone"
initdone
east #
../../guestbin/ipsec-kernel-state.sh
src 192.1.2.23 dst 192.1.2.45
proto esp spi 0xSPISPI reqid REQID mode tunnel
replay-window 0 flag af-unspec
auth-trunc hmac(sha1) 0xHASHKEY 96
enc cbc(aes) 0xENCKEY
lastused YYYY-MM-DD HH:MM:SS
src 192.1.2.45 dst 192.1.2.23
proto esp spi 0xSPISPI reqid REQID mode tunnel
replay-window 0 flag af-unspec
auth-trunc hmac(sha1) 0xHASHKEY 96
enc cbc(aes) 0xENCKEY
lastused YYYY-MM-DD HH:MM:SS
anti-replay esn context:
seq-hi 0x0, seq 0xXX, oseq-hi 0x0, oseq 0xXX
replay_window 128, bitmap-length 4
00000000 00000000 00000000 XXXXXXXX
east #
../../guestbin/ipsec-kernel-policy.sh
src 192.0.1.0/24 dst 192.0.2.0/24
dir fwd priority PRIORITY ptype main
tmpl src 192.1.2.45 dst 192.1.2.23
proto esp reqid REQID mode tunnel
src 192.0.1.0/24 dst 192.0.2.0/24
dir in priority PRIORITY ptype main
tmpl src 192.1.2.45 dst 192.1.2.23
proto esp reqid REQID mode tunnel
src 192.0.2.0/24 dst 192.0.1.0/24
dir out priority PRIORITY ptype main
tmpl src 192.1.2.23 dst 192.1.2.45
proto esp reqid REQID mode tunnel
east #
|