diff options
author | rebortg <github@ghlr.de> | 2023-11-26 13:34:49 +0100 |
---|---|---|
committer | rebortg <github@ghlr.de> | 2023-11-26 13:34:49 +0100 |
commit | 54da140062ece6ee42a20619e892bb8f23983746 (patch) | |
tree | 3144a0ca17f2eceaa5310a27e5084e895ad4bddc /docs/configuration | |
parent | 4ca2e09a2a807f7224ab3f24b47981be2b175b8b (diff) | |
parent | 5953d6f69748c82cbd9eafbe662163924ae719e6 (diff) | |
download | vyos-documentation-54da140062ece6ee42a20619e892bb8f23983746.tar.gz vyos-documentation-54da140062ece6ee42a20619e892bb8f23983746.zip |
Merge branch 'master' of github.com:vyos/vyos-documentation
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/vpn/ipsec.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/configuration/vpn/ipsec.rst b/docs/configuration/vpn/ipsec.rst index ece06fa2..b6ee86af 100644 --- a/docs/configuration/vpn/ipsec.rst +++ b/docs/configuration/vpn/ipsec.rst @@ -221,8 +221,8 @@ On the LEFT: On the RIGHT, setup by analogy and swap local and remote addresses. -Source tunnel from loopbacks -^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Source tunnel from dummy interface +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The scheme above doesn't work when one of the routers has a dynamic external address though. The classic workaround for this is to setup an address on a @@ -240,7 +240,7 @@ On the LEFT: .. code-block:: none - set interfaces loopback lo address 192.168.99.1/32 + set interfaces dummy dum0 address 192.168.99.1/32 set interfaces tunnel tun0 encapsulation gre set interfaces tunnel tun0 address 10.10.10.1/30 @@ -251,7 +251,7 @@ On the RIGHT: .. code-block:: none - set interfaces loopback lo address 192.168.99.2/32 + set interfaces dummy dum0 address 192.168.99.2/32 set interfaces tunnel tun0 encapsulation gre set interfaces tunnel tun0 address 10.10.10.2/30 |