-
Notifications
You must be signed in to change notification settings - Fork 1.4k
static: [SRv6] Fixing uninstall and reinstall uA Sids upon Intf flaps #19027
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
cscarpitta
merged 1 commit into
FRRouting:master
from
raja-rajasekar:rajasekarr/fix_intf_flap_srv6_endx
Jun 16, 2025
Merged
static: [SRv6] Fixing uninstall and reinstall uA Sids upon Intf flaps #19027
cscarpitta
merged 1 commit into
FRRouting:master
from
raja-rajasekar:rajasekarr/fix_intf_flap_srv6_endx
Jun 16, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Static daemons in the current code does not remove/add SRv6 sids configured with behavior uA on an interface when it receives the interface events. Fixing this. Initial state: ip -6 -d route | grep End.X unicast fcbb:bbbb:fe5::/48 nhid 16 encap seg6local action End.X nh6 fe80::c0f9:81ff:fe68:6455 dev r1-eth1 proto 196 scope global metric 20 pref medium vtysh -c "sh ipv6 route" | grep seg6 S>* fcbb:bbbb:fe5::/48 [1/0] is directly connected, r1-eth1, seg6local uA nh6 fe80::c0f9:81ff:fe68:6455, weight 1, 00:00:20 ip link set down r1-eth1 vtysh -c "sh ipv6 route" | grep seg6 S> fcbb:bbbb:fe5::/48 [1/0] is directly connected, r1-eth1 inactive, seg6local uA nh6 fe80::c0f9:81ff:fe68:6455, weight 1, 00:00:28 ip -6 -d route | grep End.X ip link set up r1-eth1 vtysh -c "sh ipv6 route" | grep seg6 S>* fcbb:bbbb:fe5::/48 [1/0] is directly connected, r1-eth1, seg6local uA nh6 fe80::c0f9:81ff:fe68:6455, weight 1, 00:00:41 ip -6 -d route | grep End.X Signed-off-by: Rajasekar Raja <[email protected]>
Contributor
Author
|
ci:rerun |
1 similar comment
Contributor
Author
|
ci:rerun |
cscarpitta
approved these changes
Jun 16, 2025
Contributor
cscarpitta
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Contributor
|
@Mergifyio backport dev/10.4 |
✅ Backports have been createdDetails
|
ton31337
added a commit
that referenced
this pull request
Jun 16, 2025
static: [SRv6] Fixing uninstall and reinstall uA Sids upon Intf flaps (backport #19027)
cscarpitta
added a commit
to cscarpitta/sonic-buildimage
that referenced
this pull request
Jul 17, 2025
- staticd: Do not log uninitialized nexthop variable (FRRouting/frr#18271) - staticd: fix deref of NULL pointer in srv6 code (FRRouting/frr#18890) - static: [SRv6] Fixing uninstall and reinstall uA Sids upon Intf flaps (FRRouting/frr#19027) Signed-off-by: Carmine Scarpitta <[email protected]>
cscarpitta
added a commit
to cscarpitta/sonic-buildimage
that referenced
this pull request
Jul 17, 2025
- staticd: Do not log uninitialized nexthop variable (FRRouting/frr#18271) - staticd: fix deref of NULL pointer in srv6 code (FRRouting/frr#18890) - static: [SRv6] Fixing uninstall and reinstall uA Sids upon Intf flaps (FRRouting/frr#19027) Signed-off-by: Carmine Scarpitta <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Static daemons in the current code does not remove/add SRv6 sids configured with behavior uA on an interface when it receives the interface events.
Fixing this.