diff options
author | srividya0208 <a.srividya@vyos.io> | 2022-02-15 11:11:00 -0500 |
---|---|---|
committer | srividya0208 <a.srividya@vyos.io> | 2022-02-15 11:11:00 -0500 |
commit | 06f30a8b325fdbc070788b2347718128eb585854 (patch) | |
tree | e87b7eb02d0a371e5e50ede383ea4719046f8629 /docs/configuration/vpn | |
parent | 12b1194d379132b43c81f73e607e1ed1a11f3050 (diff) | |
download | vyos-documentation-06f30a8b325fdbc070788b2347718128eb585854.tar.gz vyos-documentation-06f30a8b325fdbc070788b2347718128eb585854.zip |
vpn-gre:incorrect syntax: local-ip and remote-ip changed to source-address and remote
vyos@vyos# set int tunnel tun0
Possible completions:
remote Tunnel remote address
source-address
Source IP address used to initiate connection
Diffstat (limited to 'docs/configuration/vpn')
-rw-r--r-- | docs/configuration/vpn/ipsec.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/configuration/vpn/ipsec.rst b/docs/configuration/vpn/ipsec.rst index 590f6023..7194057d 100644 --- a/docs/configuration/vpn/ipsec.rst +++ b/docs/configuration/vpn/ipsec.rst @@ -174,8 +174,8 @@ On the LEFT: # GRE tunnel set interfaces tunnel tun0 encapsulation gre - set interfaces tunnel tun0 local-ip 192.0.2.10 - set interfaces tunnel tun0 remote-ip 203.0.113.45 + set interfaces tunnel tun0 source-address 192.0.2.10 + set interfaces tunnel tun0 remote 203.0.113.45 set interfaces tunnel tun0 address 10.10.10.1/30 ## IPsec @@ -226,8 +226,8 @@ On the LEFT: set interfaces tunnel tun0 encapsulation gre set interfaces tunnel tun0 address 10.10.10.1/30 - set interfaces tunnel tun0 local-ip 192.168.99.1 - set interfaces tunnel tun0 remote-ip 192.168.99.2 + set interfaces tunnel tun0 source-address 192.168.99.1 + set interfaces tunnel tun0 remote 192.168.99.2 On the RIGHT: @@ -237,8 +237,8 @@ On the RIGHT: set interfaces tunnel tun0 encapsulation gre set interfaces tunnel tun0 address 10.10.10.2/30 - set interfaces tunnel tun0 local-ip 192.168.99.2 - set interfaces tunnel tun0 remote-ip 192.168.99.1 + set interfaces tunnel tun0 source-address 192.168.99.2 + set interfaces tunnel tun0 remote 192.168.99.1 **Setting up IPSec** @@ -247,7 +247,7 @@ tricky part is that pre-shared secret authentication doesn't work with dynamic address, so we'll have to use RSA keys. First, on both routers run the operational command "generate pki key-pair -install <key-pair nam>>". You may choose different length than 2048 of course. +install <key-pair name>". You may choose different length than 2048 of course. .. code-block:: none |