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
Before:
```
anlan(config-router-af)# neighbor 22::22 addpath-tx-all-paths
anlan(config-router-af)# no neighbor 22::22 addpath-tx-all-paths
% Peer not currently configured to transmit all paths.anlan(config-router-af)#
```
After:
```
anlan(config-router)# address-family ipv6 labeled-unicast
anlan(config-router-af)# neighbor 22::22 addpath-tx-all-paths
anlan(config-router-af)# no neighbor 22::22 addpath-tx-all-paths
```
`bgp_addpath_set_peer_type()` changes from `SAFI_LABELED_UNICAST` to
`SAFI_UNICAST`, so we need the same change during the early check.
Signed-off-by: anlan_cs <[email protected]>
(cherry picked from commit 8172ee8)
0 commit comments