mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 06:03:10 +00:00
bgpd: allow no neighbor X.X.X.X maximum-prefix-out [(1-4294967295)]
Specifying a number is not possible with command no neighbor X.X.X.X maximum-prefix-out > frr(config-router-af)# no neighbor 192.168.1.2 maximum-prefix-out 1 > % Unknown command: no neighbor 192.168.1.2 maximum-prefix-out 1 This patch allows it. Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
This commit is contained in:
parent
f5b25d2c34
commit
bc03c622e1
@ -7688,11 +7688,12 @@ DEFUN(neighbor_maximum_prefix_out,
|
|||||||
|
|
||||||
DEFUN(no_neighbor_maximum_prefix_out,
|
DEFUN(no_neighbor_maximum_prefix_out,
|
||||||
no_neighbor_maximum_prefix_out_cmd,
|
no_neighbor_maximum_prefix_out_cmd,
|
||||||
"no neighbor <A.B.C.D|X:X::X:X|WORD> maximum-prefix-out",
|
"no neighbor <A.B.C.D|X:X::X:X|WORD> maximum-prefix-out [(1-4294967295)]",
|
||||||
NO_STR
|
NO_STR
|
||||||
NEIGHBOR_STR
|
NEIGHBOR_STR
|
||||||
NEIGHBOR_ADDR_STR2
|
NEIGHBOR_ADDR_STR2
|
||||||
"Maximum number of prefixes to be sent to this peer\n")
|
"Maximum number of prefixes to be sent to this peer\n"
|
||||||
|
"Maximum no. of prefix limit\n")
|
||||||
{
|
{
|
||||||
int idx_peer = 2;
|
int idx_peer = 2;
|
||||||
struct peer *peer;
|
struct peer *peer;
|
||||||
|
Loading…
Reference in New Issue
Block a user