diff options
author | srividya0208 <a.srividya@vyos.io> | 2021-05-27 14:18:26 -0400 |
---|---|---|
committer | srividya0208 <a.srividya@vyos.io> | 2021-05-27 14:18:26 -0400 |
commit | cf3312318177f02ec33be403ec88eb1438a9892c (patch) | |
tree | 34c6c7b4713a447e49a39cb6f9a15874164fe640 /docs/configexamples/azure-vpn-bgp.rst | |
parent | 8651aed3bd0f17e44d4a7fb486448a9f0526950f (diff) | |
parent | 546eced065d473ad2a1e2a7ef0bf8def6ff43ab3 (diff) | |
download | vyos-documentation-cf3312318177f02ec33be403ec88eb1438a9892c.tar.gz vyos-documentation-cf3312318177f02ec33be403ec88eb1438a9892c.zip |
Merge branch 'master' of https://github.com/vyos/vyos-documentation
Diffstat (limited to 'docs/configexamples/azure-vpn-bgp.rst')
-rw-r--r-- | docs/configexamples/azure-vpn-bgp.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/configexamples/azure-vpn-bgp.rst b/docs/configexamples/azure-vpn-bgp.rst index 1d61b3b8..c40e1b76 100644 --- a/docs/configexamples/azure-vpn-bgp.rst +++ b/docs/configexamples/azure-vpn-bgp.rst @@ -120,13 +120,14 @@ Vyos configuration .. 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' - set protocols bgp 64499 neighbor 10.0.0.4 timers holdtime '30' - set protocols bgp 64499 neighbor 10.0.0.4 timers keepalive '10' + set protocols bgp local-as 64499 + set protocols bgp neighbor 10.0.0.4 remote-as '65540' + set protocols bgp neighbor 10.0.0.4 address-family ipv4-unicast soft-reconfiguration 'inbound' + set protocols bgp neighbor 10.0.0.4 timers holdtime '30' + set protocols bgp neighbor 10.0.0.4 timers keepalive '10' - **Important**: Disable connected check \ .. code-block:: none - set protocols bgp 64499 neighbor 10.0.0.4 disable-connected-check + set protocols bgp neighbor 10.0.0.4 disable-connected-check |