diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2021-03-31 17:51:34 +0200 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2021-04-02 09:01:02 +0200 |
commit | 5b1b6b8bb2ff63c10bb1deef78834fe015fd0765 (patch) | |
tree | c8bde2448bb79a81c3ef14dc98f43aa72ab63953 /yang/frr-bgp-common.yang | |
parent | Merge pull request #8375 from mjstapp/fix_ignore_pcep_test_files (diff) | |
download | frr-5b1b6b8bb2ff63c10bb1deef78834fe015fd0765.tar.xz frr-5b1b6b8bb2ff63c10bb1deef78834fe015fd0765.zip |
bgpd: increase the maximum number of neighbors
increase the maximum number of neighbors in a bgp group.
Set the maximum value to 50000 instead of 5000.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to '')
-rw-r--r-- | yang/frr-bgp-common.yang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yang/frr-bgp-common.yang b/yang/frr-bgp-common.yang index 1840e3728..1a19d5296 100644 --- a/yang/frr-bgp-common.yang +++ b/yang/frr-bgp-common.yang @@ -393,7 +393,7 @@ submodule frr-bgp-common { container global-neighbor-config { leaf dynamic-neighbors-limit { type uint32 { - range "1..5000"; + range "1..65535"; } description "Maximum number of BGP Dynamic Neighbors that can be created."; |