You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/cumulus-linux-516/Layer-3/Border-Gateway-Protocol-BGP/Optional-BGP-Configuration.md
+47Lines changed: 47 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1641,6 +1641,53 @@ spine01# exit
1641
1641
{{< /tab >}}
1642
1642
{{< /tabs >}}
1643
1643
1644
+
### BGP PIC in a Multiplane Topology
1645
+
1646
+
Fast route convergence in case of remote link failures between leaf and spine, and spine and superspine layers in a multiplane topology requires you to configure the SOO source IP address on leaf switches to advertise the SOO route in addition to configuring PIC as described in {{<linkurl="#bgp-prefix-independent-convergence"text="BGP Prefix Independent Convergence">}} above. The switch uses the SOO source IP address instead of the router ID.
1647
+
1648
+
{{%notice note%}}
1649
+
The SOO source IP address must be unique in the topology so that it does not conflict with the router ID or loopback IP address of any other switch.
1650
+
{{%/notice%}}
1651
+
1652
+
To configure PIC in a multiplane topology, set the SOO source IP address on a leaf. Configuring the same SOO source IP address on multiple leaf switches puts them in the same anycast group.
1653
+
1654
+
{{< tabs "1654 ">}}
1655
+
{{< tab "NVUE Commands ">}}
1656
+
1657
+
```
1658
+
cumulus@leaf01:~$ nv set vrf default router bgp soo-source 10.1.1.1
1659
+
cumulus@leaf01:~$ nv config apply
1660
+
```
1661
+
1662
+
To unset the SOO source IP address, run the `nv set vrf default router bgp soo-source` command.
1663
+
1664
+
{{< /tab >}}
1665
+
{{< tab "vtysh Commands ">}}
1666
+
1667
+
```
1668
+
cumulus@leaf01:~$ sudo vtysh
1669
+
...
1670
+
leaf01# configure terminal
1671
+
leaf01(config)# router bgp 65101
1672
+
leaf01(config-router)# bgp soo-source 10.1.1.1
1673
+
leaf01(config-router)# end
1674
+
leaf01# write memory
1675
+
leaf01# exit
1676
+
```
1677
+
1678
+
{{< /tab >}}
1679
+
{{< /tabs >}}
1680
+
1681
+
If you set the SOO source IP address on a leaf switch before you enable the BGP advertise origin option, the switch starts advertising SOO routes using the configured SOO source IP address.
1682
+
1683
+
If you set the SOO source IP address on a leaf switch after enable the BGP advertise origin option:
1684
+
- The leaf withdraws the old SOO route (the one with the router ID).
1685
+
- The leaf announces a new SOO route using the SOO-source IP address.
1686
+
- All prefix routes are readvertised with the new SOO tag.
1687
+
- All network switches detect this change, remove references to the old SOO route, and install the new SOO route in their routing tables.
1688
+
1689
+
### Show BGP PIC Information
1690
+
1644
1691
Cumulus Linux provides several show commands to help you troubleshoot BGP PIC. Refer to {{<linkurl="Troubleshooting-BGP/#show-prefix-independent-convergence-information"text="Show Prefix Independent Convergence Information">}}.
Copy file name to clipboardExpand all lines: content/cumulus-linux-516/Whats-New/_index.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,16 +27,17 @@ Cumulus Linux 5.16 contains new features and improvements, and provides bug fixe
27
27
- {{<linkurl="Interface-Configuration-and-Management/#interface-physical-name"text="Physical interface names that map the port to the connector">}}
28
28
- {{<linkurl="NVUE-CLI/#command-completion"text="Restricted bash enhancements for NVUE commands include command history with arrow key navigation, context-aware tab completion, and inline help with ? to list valid options">}}
0 commit comments