diff options
author | Sougata Barik <sougatab@nvidia.com> | 2024-10-30 10:30:32 +0100 |
---|---|---|
committer | Sougata <sougatab@nvidia.com> | 2025-01-06 12:32:21 +0100 |
commit | 86b294698f91444097284c18b4d80c4f75530d3a (patch) | |
tree | 33f89ea16be351be4f1ca70e5b2fc07a1ff8f0e7 /lib | |
parent | Merge pull request #17156 from opensourcerouting/eradicate-strncpy (diff) | |
download | frr-86b294698f91444097284c18b4d80c4f75530d3a.tar.xz frr-86b294698f91444097284c18b4d80c4f75530d3a.zip |
zebra: Fix ip protocol route-map issue.
"ip/ipv6 protocol any route-map <route map>" cli is setting
wrong route type ( ZEBRA_ROUTE_MAX ), It should set route type
ZEBRA_ROUTE_ALL.
Ticket: #4101560
Signed-off-by: Sougata Barik <sougatab@nvidia.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/route_types.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/route_types.txt b/lib/route_types.txt index 93cbc36e9..b5f8b6fdf 100644 --- a/lib/route_types.txt +++ b/lib/route_types.txt @@ -88,7 +88,7 @@ ZEBRA_ROUTE_VRRP, vrrp, vrrpd, '-', 0, 0, 0, "VRRP", vr ZEBRA_ROUTE_NHG, zebra, none, '-', 0, 0, 0, "Nexthop Group", none ZEBRA_ROUTE_SRTE, srte, none, '-', 0, 0, 0, "SR-TE", none ZEBRA_ROUTE_TABLE_DIRECT, table-direct, zebra, 't', 1, 1, 1, "Table-Direct", zebra -ZEBRA_ROUTE_ALL, wildcard, none, '-', 0, 0, 0, "-", none +ZEBRA_ROUTE_ALL, any, none, '-', 0, 0, 0, "-", none ## help strings |