diff options
| author | Christian Poessinger <christian@poessinger.com> | 2019-11-28 21:41:53 +0100 | 
|---|---|---|
| committer | Christian Poessinger <christian@poessinger.com> | 2019-11-28 21:41:53 +0100 | 
| commit | de3b09d6ac10405b72dfefdfe750a92d8eea30f6 (patch) | |
| tree | fc493ef372dbe11ca9fea91d8a070b7e76a5ad25 /docs/appendix/examples/azure-vpn-bgp.rst | |
| parent | 8d843d4a17ff0c249256a4be902607f3e83f16ab (diff) | |
| download | vyos-documentation-de3b09d6ac10405b72dfefdfe750a92d8eea30f6.tar.gz vyos-documentation-de3b09d6ac10405b72dfefdfe750a92d8eea30f6.zip | |
Refactor "code-block:: console" to "code-block:: none"
Diffstat (limited to 'docs/appendix/examples/azure-vpn-bgp.rst')
| -rw-r--r-- | docs/appendix/examples/azure-vpn-bgp.rst | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/docs/appendix/examples/azure-vpn-bgp.rst b/docs/appendix/examples/azure-vpn-bgp.rst index 896f43d4..57f82396 100644 --- a/docs/appendix/examples/azure-vpn-bgp.rst +++ b/docs/appendix/examples/azure-vpn-bgp.rst @@ -52,7 +52,7 @@ Vyos configuration  - Configure the IKE and ESP settings to match a subset    of those supported by Azure: -.. code-block:: console +.. code-block:: none    set vpn ipsec esp-group AZURE compression 'disable'    set vpn ipsec esp-group AZURE lifetime '3600' @@ -73,26 +73,26 @@ Vyos configuration  - Enable IPsec on eth0 -.. code-block:: console +.. code-block:: none    set vpn ipsec ipsec-interfaces interface 'eth0'  - Configure a VTI with a dummy IP address -.. code-block:: console +.. code-block:: none    set interfaces vti vti1 address '10.10.1.5/32'    set interfaces vti vti1 description 'Azure Tunnel'  - Clamp the VTI's MSS to 1350 to avoid PMTU blackholes. -.. code-block:: console +.. code-block:: none    set firewall options interface vti1 adjust-mss 1350  - Configure the VPN tunnel -.. code-block:: console +.. code-block:: none    set vpn ipsec site-to-site peer 203.0.113.2 authentication id '198.51.100.3'    set vpn ipsec site-to-site peer 203.0.113.2 authentication mode 'pre-shared-secret' @@ -108,13 +108,13 @@ Vyos configuration  - **Important**: Add an interface route to reach Azure's BGP listener -.. code-block:: console +.. code-block:: none    set protocols static interface-route 10.0.0.4/32 next-hop-interface vti1  - Configure your BGP settings -.. code-block:: console +.. code-block:: none    set protocols bgp 64499 neighbor 10.0.0.4 remote-as '65540'    set protocols bgp 64499 neighbor 10.0.0.4 address-family ipv4-unicast soft-reconfiguration 'inbound' @@ -123,6 +123,6 @@ Vyos configuration  - **Important**: Disable connected check \ -.. code-block:: console +.. code-block:: none    set protocols bgp 64499 neighbor 10.0.0.4 disable-connected-check | 
