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
Fix route_check.py to ignore local p2p IP prefixes
* In some cases where there are repeated link flaps, route_check.py flags local
p2p IP prefixes as missing in APPL_DB. These /31 IPv4 or /126 IPv6 IPs are
not expected to be present in APPL_DB after a link goes down. This change
tries to filter out such entries.
Failure results: {{
"missed_ROUTE_TABLE_routes": [
"10.10.196.16/31",
"2603:10b0:31f:753::24/126"
]
}}
Failed. Look at reported mismatches above
add: []
del: [
"10.10.196.16/31",
"2603:10b0:31f:753::24/126"
]
Signed-off-by: Prabhat Aravind <[email protected]>
0 commit comments