diff options
Diffstat (limited to 'extras/strongswan/configs/responder')
-rw-r--r-- | extras/strongswan/configs/responder/ipsec.conf | 23 | ||||
-rw-r--r-- | extras/strongswan/configs/responder/ipsec.secrets | 1 | ||||
-rw-r--r-- | extras/strongswan/configs/responder/vpp.conf | 26 |
3 files changed, 50 insertions, 0 deletions
diff --git a/extras/strongswan/configs/responder/ipsec.conf b/extras/strongswan/configs/responder/ipsec.conf new file mode 100644 index 00000000000..7ca0d413495 --- /dev/null +++ b/extras/strongswan/configs/responder/ipsec.conf @@ -0,0 +1,23 @@ +config setup + strictcrlpolicy=no + +conn initiator + mobike=no + auto=add + type=tunnel + keyexchange=ikev2 + ike=aes256gcm16-prfsha256-modp2048! + esp=aes256gcm16-esn! + lifetime=1h + +# local: + leftauth=psk + leftid=@roadwarrior.vpn.example.com + leftsubnet=192.168.5.0/24 + +# remote: (gateway) + rightid=@vpp.home + right=192.168.10.2 + rightauth=psk + rightsubnet=192.168.3.0/24 + diff --git a/extras/strongswan/configs/responder/ipsec.secrets b/extras/strongswan/configs/responder/ipsec.secrets new file mode 100644 index 00000000000..adcf9518e9b --- /dev/null +++ b/extras/strongswan/configs/responder/ipsec.secrets @@ -0,0 +1 @@ +: PSK 'Vpp123' diff --git a/extras/strongswan/configs/responder/vpp.conf b/extras/strongswan/configs/responder/vpp.conf new file mode 100644 index 00000000000..291b8173729 --- /dev/null +++ b/extras/strongswan/configs/responder/vpp.conf @@ -0,0 +1,26 @@ +create host-interface name vpp +set interface ip addr host-vpp 192.168.10.2/24 +set interface state host-vpp up + +create host-interface name priv +set interface ip addr host-priv 192.168.3.1/24 +set interface state host-priv up + +ikev2 profile add pr1 +ikev2 profile set pr1 auth shared-key-mic string Vpp123 +ikev2 profile set pr1 id local fqdn vpp.home +ikev2 profile set pr1 id remote fqdn roadwarrior.vpn.example.com + +ikev2 profile set pr1 traffic-selector local ip-range 192.168.3.0 - 192.168.3.255 port-range 0 - 65535 protocol 0 +ikev2 profile set pr1 traffic-selector remote ip-range 192.168.5.0 - 192.168.5.255 port-range 0 - 65535 protocol 0 + +event-logger clear +trace add af-packet-input 100 + +create ipip tunnel src 192.168.10.2 dst 192.168.10.1 +ikev2 profile set pr1 tunnel ipip0 +ip route add 192.168.5.0/24 via 192.168.10.1 ipip0 +set interface unnumbered ipip0 use host-vpp + +ikev2 set liveness 30 4 +ikev2 set logging level 4 |