mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 02:22:48 +00:00
pbrd: unconfigure table range
Implement the [no] version of `pbr table range`. We had the command but were doing nothing with it. This just calls the set_table_range API again using the defaults. Signed-off-by: Stephen Worley <sworley@cumulusnetworks.com>
This commit is contained in:
parent
9a6e1905e9
commit
b246eb8a8d
@ -88,8 +88,7 @@ DEFUN_NOSH(no_pbr_map, no_pbr_map_cmd, "no pbr-map PBRMAP [seq (1-700)]",
|
||||
|
||||
DEFPY(pbr_set_table_range,
|
||||
pbr_set_table_range_cmd,
|
||||
"[no] pbr table range (10000-4294966272)$lb (10000-4294966272)$ub",
|
||||
NO_STR
|
||||
"pbr table range (10000-4294966272)$lb (10000-4294966272)$ub",
|
||||
PBR_STR
|
||||
"Set table ID range\n"
|
||||
"Set table ID range\n"
|
||||
@ -113,6 +112,19 @@ DEFPY(pbr_set_table_range,
|
||||
return ret;
|
||||
}
|
||||
|
||||
DEFPY(no_pbr_set_table_range, no_pbr_set_table_range_cmd,
|
||||
"no pbr table range [(10000-4294966272)$lb (10000-4294966272)$ub]",
|
||||
NO_STR
|
||||
PBR_STR
|
||||
"Set table ID range\n"
|
||||
"Set table ID range\n"
|
||||
"Lower bound for table ID range\n"
|
||||
"Upper bound for table ID range\n")
|
||||
{
|
||||
pbr_nht_set_tableid_range(PBR_NHT_DEFAULT_LOW_TABLEID,
|
||||
PBR_NHT_DEFAULT_HIGH_TABLEID);
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFPY(pbr_map_match_src, pbr_map_match_src_cmd,
|
||||
"[no] match src-ip <A.B.C.D/M|X:X::X:X/M>$prefix",
|
||||
@ -854,6 +866,7 @@ void pbr_vty_init(void)
|
||||
install_element(CONFIG_NODE, &pbr_map_cmd);
|
||||
install_element(CONFIG_NODE, &no_pbr_map_cmd);
|
||||
install_element(CONFIG_NODE, &pbr_set_table_range_cmd);
|
||||
install_element(CONFIG_NODE, &no_pbr_set_table_range_cmd);
|
||||
install_element(INTERFACE_NODE, &pbr_policy_cmd);
|
||||
install_element(PBRMAP_NODE, &pbr_map_match_src_cmd);
|
||||
install_element(PBRMAP_NODE, &pbr_map_match_dst_cmd);
|
||||
|
Loading…
Reference in New Issue
Block a user