mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-25 22:01:08 +00:00
Merge pull request #14955 from FRRouting/mergify/bp/stable/9.1/pr-14922
staticd: fix changing to source auto in bfd monitor (backport #14922)
This commit is contained in:
commit
f9d62446c4
@ -18,6 +18,7 @@
|
|||||||
#include "static_vrf.h"
|
#include "static_vrf.h"
|
||||||
#include "static_routes.h"
|
#include "static_routes.h"
|
||||||
#include "static_nb.h"
|
#include "static_nb.h"
|
||||||
|
#include "static_zebra.h"
|
||||||
|
|
||||||
|
|
||||||
static int static_path_list_create(struct nb_cb_create_args *args)
|
static int static_path_list_create(struct nb_cb_create_args *args)
|
||||||
@ -960,6 +961,17 @@ int route_next_hop_bfd_source_destroy(struct nb_cb_destroy_args *args)
|
|||||||
|
|
||||||
sn = nb_running_get_entry(args->dnode, NULL, true);
|
sn = nb_running_get_entry(args->dnode, NULL, true);
|
||||||
static_next_hop_bfd_auto_source(sn);
|
static_next_hop_bfd_auto_source(sn);
|
||||||
|
|
||||||
|
/* NHT information are needed by BFD to automatically find the source
|
||||||
|
*
|
||||||
|
* Force zebra to resend the information to BFD by unregistering and
|
||||||
|
* registering again NHT. The (...)/frr-nexthops/nexthop northbound
|
||||||
|
* apply_finish function will trigger a call to static_install_nexthop()
|
||||||
|
* that does a call to static_zebra_nht_register(nh, true);
|
||||||
|
* static_zebra_nht_register(sn, false);
|
||||||
|
*/
|
||||||
|
static_zebra_nht_register(sn, false);
|
||||||
|
|
||||||
return NB_OK;
|
return NB_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,6 +65,41 @@ def setup_module(mod):
|
|||||||
tgen.start_router()
|
tgen.start_router()
|
||||||
|
|
||||||
|
|
||||||
|
def expect_static_bfd_output(router, filename):
|
||||||
|
"Load JSON file and compare with 'show bfd peer json'"
|
||||||
|
|
||||||
|
tgen = get_topogen()
|
||||||
|
|
||||||
|
logger.info("waiting BFD configuration on router {}".format(router))
|
||||||
|
bfd_config = json.loads(open("{}/{}/{}.json".format(CWD, router, filename)).read())
|
||||||
|
test_func = partial(
|
||||||
|
topotest.router_json_cmp,
|
||||||
|
tgen.gears[router],
|
||||||
|
"show bfd static route json",
|
||||||
|
bfd_config,
|
||||||
|
)
|
||||||
|
_, result = topotest.run_and_expect(test_func, None, count=20, wait=1)
|
||||||
|
assertmsg = '"{}" BFD static route status failure'.format(router)
|
||||||
|
assert result is None, assertmsg
|
||||||
|
|
||||||
|
|
||||||
|
def expect_route_missing(router, iptype, route):
|
||||||
|
"Wait until route is present on RIB for protocol."
|
||||||
|
|
||||||
|
tgen = get_topogen()
|
||||||
|
|
||||||
|
logger.info("waiting route {} to disapear in {}".format(route, router))
|
||||||
|
test_func = partial(
|
||||||
|
topotest.router_json_cmp,
|
||||||
|
tgen.gears[router],
|
||||||
|
"show {} route json".format(iptype),
|
||||||
|
{route: None},
|
||||||
|
)
|
||||||
|
rv, result = topotest.run_and_expect(test_func, None, count=20, wait=1)
|
||||||
|
assertmsg = '"{}" convergence failure'.format(router)
|
||||||
|
assert result is None, assertmsg
|
||||||
|
|
||||||
|
|
||||||
def test_wait_bgp_convergence():
|
def test_wait_bgp_convergence():
|
||||||
"Wait for BGP to converge"
|
"Wait for BGP to converge"
|
||||||
tgen = get_topogen()
|
tgen = get_topogen()
|
||||||
@ -166,7 +201,7 @@ def test_wait_bfd_convergence():
|
|||||||
expect_bfd_configuration("r6")
|
expect_bfd_configuration("r6")
|
||||||
|
|
||||||
|
|
||||||
def test_static_route_monitoring():
|
def test_static_route_monitoring_convergence():
|
||||||
"Test static route monitoring output."
|
"Test static route monitoring output."
|
||||||
tgen = get_topogen()
|
tgen = get_topogen()
|
||||||
if tgen.routers_have_failure():
|
if tgen.routers_have_failure():
|
||||||
@ -174,31 +209,47 @@ def test_static_route_monitoring():
|
|||||||
|
|
||||||
logger.info("test BFD static route status")
|
logger.info("test BFD static route status")
|
||||||
|
|
||||||
def expect_static_bfd_output(router, filename):
|
|
||||||
"Load JSON file and compare with 'show bfd peer json'"
|
|
||||||
logger.info("waiting BFD configuration on router {}".format(router))
|
|
||||||
bfd_config = json.loads(
|
|
||||||
open("{}/{}/{}.json".format(CWD, router, filename)).read()
|
|
||||||
)
|
|
||||||
test_func = partial(
|
|
||||||
topotest.router_json_cmp,
|
|
||||||
tgen.gears[router],
|
|
||||||
"show bfd static route json",
|
|
||||||
bfd_config,
|
|
||||||
)
|
|
||||||
_, result = topotest.run_and_expect(test_func, None, count=20, wait=1)
|
|
||||||
assertmsg = '"{}" BFD static route status failure'.format(router)
|
|
||||||
assert result is None, assertmsg
|
|
||||||
|
|
||||||
expect_static_bfd_output("r3", "bfd-static")
|
expect_static_bfd_output("r3", "bfd-static")
|
||||||
expect_static_bfd_output("r6", "bfd-static")
|
expect_static_bfd_output("r6", "bfd-static")
|
||||||
|
|
||||||
logger.info("Setting r4 link down ...")
|
|
||||||
|
|
||||||
tgen.gears["r4"].link_enable("r4-eth0", False)
|
def test_static_route_monitoring_wrong_source():
|
||||||
|
"Test that static monitoring fails if setting a wrong source."
|
||||||
|
|
||||||
expect_static_bfd_output("r3", "bfd-static-down")
|
tgen = get_topogen()
|
||||||
expect_static_bfd_output("r6", "bfd-static-down")
|
if tgen.routers_have_failure():
|
||||||
|
pytest.skip(tgen.errors)
|
||||||
|
|
||||||
|
logger.info("test route wrong ")
|
||||||
|
|
||||||
|
tgen.gears["r3"].vtysh_cmd(
|
||||||
|
"""
|
||||||
|
configure
|
||||||
|
ipv6 route 2001:db8:5::/64 2001:db8:4::3 bfd multi-hop source 2001:db8:4::2 profile slow-tx
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
|
||||||
|
expect_route_missing("r3", "ipv6", "2001:db8:5::/64")
|
||||||
|
|
||||||
|
|
||||||
|
def test_static_route_monitoring_unset_source():
|
||||||
|
"Test that static monitoring fails if setting a wrong source."
|
||||||
|
|
||||||
|
tgen = get_topogen()
|
||||||
|
if tgen.routers_have_failure():
|
||||||
|
pytest.skip(tgen.errors)
|
||||||
|
|
||||||
|
logger.info("test route wrong ")
|
||||||
|
|
||||||
|
tgen.gears["r3"].vtysh_cmd(
|
||||||
|
"""
|
||||||
|
configure
|
||||||
|
ipv6 route 2001:db8:5::/64 2001:db8:4::3 bfd multi-hop profile slow-tx
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
|
||||||
|
expect_static_bfd_output("r3", "bfd-static")
|
||||||
|
expect_static_bfd_output("r6", "bfd-static")
|
||||||
|
|
||||||
|
|
||||||
def test_expect_static_rib_removal():
|
def test_expect_static_rib_removal():
|
||||||
@ -208,18 +259,12 @@ def test_expect_static_rib_removal():
|
|||||||
if tgen.routers_have_failure():
|
if tgen.routers_have_failure():
|
||||||
pytest.skip(tgen.errors)
|
pytest.skip(tgen.errors)
|
||||||
|
|
||||||
def expect_route_missing(router, iptype, route):
|
logger.info("Setting r4 link down ...")
|
||||||
"Wait until route is present on RIB for protocol."
|
|
||||||
logger.info("waiting route {} to disapear in {}".format(route, router))
|
tgen.gears["r4"].link_enable("r4-eth0", False)
|
||||||
test_func = partial(
|
|
||||||
topotest.router_json_cmp,
|
expect_static_bfd_output("r3", "bfd-static-down")
|
||||||
tgen.gears[router],
|
expect_static_bfd_output("r6", "bfd-static-down")
|
||||||
"show {} route json".format(iptype),
|
|
||||||
{route: None},
|
|
||||||
)
|
|
||||||
rv, result = topotest.run_and_expect(test_func, None, count=20, wait=1)
|
|
||||||
assertmsg = '"{}" convergence failure'.format(router)
|
|
||||||
assert result is None, assertmsg
|
|
||||||
|
|
||||||
expect_route_missing("r1", "ip", "10.254.254.5/32")
|
expect_route_missing("r1", "ip", "10.254.254.5/32")
|
||||||
expect_route_missing("r2", "ip", "10.254.254.5/32")
|
expect_route_missing("r2", "ip", "10.254.254.5/32")
|
||||||
|
Loading…
Reference in New Issue
Block a user