Nokia SR Linux โ Fault finding
Telemetry-driven troubleshooting and health assertions for Nokia SR Linux data center fabrics (VXLAN/EVPN). Part of the multi-vendor Data Center automation guide.
Setup, key commands & run examples
Confirm the overlay is up on Nokia SR Linux: every EVPN/BGP peer should be Established.
show network-instance default protocols bgp neighbor
# any neighbor not "Established" / Up is a faultCollect BGP/EVPN neighbors from Nokia and print any peer that is down.
# parse "show network-instance default protocols bgp neighbor" structured output
for nbr in get_bgp_neighbors(): # via gNMI
if nbr["state"] != "established":
print(f"[FAULT] Nokia EVPN peer {nbr['peer']} {nbr['state']}")Most overlay faults hide in the underlay โ verify routes and interfaces on Nokia before blaming EVPN.
show interface brief
show network-instance default route-table ipv4-unicast summaryBest practices
Assert, don't eyeball
Codify the checks โ Nokia EVPN peers up, all VTEPs reachable, no climbing error counters.
Underlay before overlay
Verify OSPF/eBGP and MTU first; VXLAN/EVPN faults usually trace back to the underlay.
Compare against a baseline
Snapshot a healthy fabric state and diff against it so you spot what changed.
Both members of a pair
Check MLAG/ESI consistency on both leaves of a redundant pair, not just one.
Hands-on exercises
Guided practice tasks โ copy the starter snippet, run it against a lab device, and extend it to meet the goal.
Goal: Loop over leaves, collect EVPN neighbors and print any peer that is not up.
for dev in leaves:
# TODO: collect EVPN neighbors and report any down peerGoal: For each remote VTEP, confirm it is present in the overlay and reachable in the underlay.
expected_vteps = {"10.255.0.21", "10.255.0.22", "10.255.0.23"}
# TODO: compare against learned VTEPs and ping in the underlay VRFCurated videos & guides
Checklist โ pitfalls, gotchas & verification
Common pitfalls
- โขBlaming the overlay when the underlay (routing/MTU) is the real fault.
- โขReading Nokia CLI by eye instead of asserting on structured state.
- โขChecking only one leaf of an MLAG/ESI pair.
Gotchas to watch
- โขAn empty diff/return is not the same as healthy โ assert peers are explicitly up.
- โขNokia counters reset on reload โ compare deltas, not absolutes.
Verify it works
- โขRe-read EVPN neighbors and confirm every peer is Established.
- โขConfirm all expected VTEPs appear and L2/L3 VNIs are programmed.