diff options
Diffstat (limited to 'bgpd/bgp_vty.h')
| -rw-r--r-- | bgpd/bgp_vty.h | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index f88f5c8125..00a3135073 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -10,6 +10,19 @@  #include "stream.h"  struct bgp; +FRR_CFG_DEFAULT_ULONG(BGP_KEEPALIVE, +	{ .val_ulong = 3, .match_profile = "datacenter", }, +	{ .val_ulong = BGP_DEFAULT_KEEPALIVE }, +); +FRR_CFG_DEFAULT_ULONG(BGP_HOLDTIME, +	{ .val_ulong = 9, .match_profile = "datacenter", }, +	{ .val_ulong = BGP_DEFAULT_HOLDTIME }, +); +FRR_CFG_DEFAULT_ULONG(BGP_CONNECT_RETRY, +	{ .val_ulong = 10, .match_profile = "datacenter", }, +	{ .val_ulong = BGP_DEFAULT_CONNECT_RETRY }, +); +  #define BGP_INSTANCE_HELP_STR "BGP view\nBGP VRF\nView/VRF name\n"  #define BGP_INSTANCE_ALL_HELP_STR "BGP view\nBGP VRF\nAll Views/VRFs\n"  | 
