Filip Tehlar | d5a3380 | 2021-02-20 02:26:17 +0000 | [diff] [blame^] | 1 | ip table add 1 |
| 2 | |
| 3 | create host-interface name gw1 |
| 4 | set interface ip addr host-gw1 192.168.10.2/24 |
| 5 | set interface state host-gw1 up |
| 6 | |
| 7 | create host-interface name gw2 |
| 8 | set int ip table host-gw2 1 |
| 9 | set interface ip addr host-gw2 192.168.10.2/24 |
| 10 | set interface state host-gw2 up |
| 11 | |
| 12 | create host-interface name priv1 |
| 13 | set interface ip addr host-priv1 192.168.3.1/24 |
| 14 | set interface state host-priv1 up |
| 15 | |
| 16 | create host-interface name priv2 |
| 17 | set int ip table host-priv2 1 |
| 18 | set interface ip addr host-priv2 192.168.3.1/24 |
| 19 | set interface state host-priv2 up |
| 20 | |
| 21 | ikev2 profile add pr1 |
| 22 | ikev2 profile set pr1 auth shared-key-mic string Vpp123 |
| 23 | ikev2 profile set pr1 id local fqdn vpp.home |
| 24 | ikev2 profile set pr1 id remote fqdn roadwarrior1.vpn.example.com |
| 25 | ikev2 profile set pr1 traffic-selector local ip-range 192.168.3.0 - 192.168.3.255 port-range 0 - 65535 protocol 0 |
| 26 | ikev2 profile set pr1 traffic-selector remote ip-range 192.168.5.0 - 192.168.5.255 port-range 0 - 65535 protocol 0 |
| 27 | create ipip tunnel src 192.168.10.2 dst 192.168.10.1 |
| 28 | ikev2 profile set pr1 tunnel ipip0 |
| 29 | ip route add 192.168.5.0/24 via 192.168.10.1 ipip0 |
| 30 | set interface unnumbered ipip0 use host-gw1 |
| 31 | |
| 32 | ikev2 profile add pr2 |
| 33 | ikev2 profile set pr2 auth shared-key-mic string Vpp123 |
| 34 | ikev2 profile set pr2 id local fqdn vpp.home |
| 35 | ikev2 profile set pr2 id remote fqdn roadwarrior2.vpn.example.com |
| 36 | ikev2 profile set pr2 traffic-selector local ip-range 192.168.3.0 - 192.168.3.255 port-range 0 - 65535 protocol 0 |
| 37 | ikev2 profile set pr2 traffic-selector remote ip-range 192.168.5.0 - 192.168.5.255 port-range 0 - 65535 protocol 0 |
| 38 | create ipip tunnel src 192.168.10.2 dst 192.168.10.1 outer-table-id 1 |
| 39 | set interface ip table ipip1 1 |
| 40 | ikev2 profile set pr2 tunnel ipip1 |
| 41 | ip route add table 1 192.168.5.0/24 via 192.168.10.1 ipip1 |
| 42 | set interface unnumbered ipip1 use host-gw2 |
| 43 | |
| 44 | ikev2 set liveness 300 4 |
| 45 | ikev2 set logging level 4 |
| 46 | event-logger clear |
| 47 | trace add af-packet-input 100 |
| 48 | |