]> git.puffer.fish Git - mirror/frr.git/commit
zebra: Properly note that a nhg's nexthop has gone down 16442/head
authorDonald Sharp <sharpd@nvidia.com>
Wed, 7 Feb 2024 19:56:15 +0000 (14:56 -0500)
committerMergify <37929162+mergify[bot]@users.noreply.github.com>
Tue, 23 Jul 2024 14:50:46 +0000 (14:50 +0000)
commitef873b1b33756dc41725212164ae97220b5b5757
tree2afa7ff7b3648d0972fdd5cf75a3b83e37748499
parent743eecd28877a93167132982a95dede0cf1b7ef7
zebra: Properly note that a nhg's nexthop has gone down

Current code when a link is set down is to just mark the
nexthop group as not properly setup.  Leaving situations
where when an interface goes down and show output is
entered we see incorrect state.  This is true for anything
that would be checking those flags at that point in time.

Modify the interface down nexthop group code to notice the
nexthops appropriately ( and I mean set the appropriate flags )
and to allow a `show ip route` command to actually display
what is going on with the nexthops.

eva# show ip route 1.0.0.0
Routing entry for 1.0.0.0/32
  Known via "sharp", distance 150, metric 0, best
  Last update 00:00:06 ago
  * 192.168.44.33, via dummy1, weight 1
  * 192.168.45.33, via dummy2, weight 1

sharpd@eva:~/frr1$ sudo ip link set dummy2 down

eva# show ip route 1.0.0.0
Routing entry for 1.0.0.0/32
  Known via "sharp", distance 150, metric 0, best
  Last update 00:00:12 ago
  * 192.168.44.33, via dummy1, weight 1
    192.168.45.33, via dummy2 inactive, weight 1

Notice now that the 1.0.0.0/32 route now correctly
displays the route for the nexthop group entry.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
(cherry picked from commit 266b0619942edd8d838235e14dc0cb71a772f585)
tests/topotests/isis_tilfa_topo1/rt5/step10/show_ip_route.ref
zebra/zebra_nhg.c
zebra/zebra_vty.c