From 33b216e16bcb53d3ab930aa8d4b6f1ee03c31d22 Mon Sep 17 00:00:00 2001 From: Louis Scalbert Date: Fri, 30 Aug 2024 13:54:36 +0200 Subject: [PATCH] tests: fix prefix length in nhrp_redundancy The expected prefix should be 5.5.5.0/24 otherwise the hosts behind NHRP client 1 nhc1 (aka. r5) are not reachable via NHRP. The issue was not seen in the FRR official CI because the tests were skipped because iptables were missing in CI machines. It solves the 16690 issue. Fixes: https://github.com/FRRouting/frr/issues/16690 Signed-off-by: Louis Scalbert (cherry picked from commit cfb057ae3cc6573df87fa6dcfdeca03a099023eb) --- tests/topotests/nhrp_redundancy/r4/nhrp_route_shortcut.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/topotests/nhrp_redundancy/r4/nhrp_route_shortcut.json b/tests/topotests/nhrp_redundancy/r4/nhrp_route_shortcut.json index f8efff2059..835dfd6b0f 100644 --- a/tests/topotests/nhrp_redundancy/r4/nhrp_route_shortcut.json +++ b/tests/topotests/nhrp_redundancy/r4/nhrp_route_shortcut.json @@ -1,7 +1,7 @@ { - "5.5.5.5\/32": [ + "5.5.5.0\/24": [ { - "prefix": "5.5.5.5\/32", + "prefix": "5.5.5.0\/24", "protocol": "nhrp", "vrfId": 0, "vrfName": "default",