summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Jakma <paul.jakma@hpe.com>2016-03-08 18:14:50 +0000
committerPaul Jakma <paul.jakma@hpe.com>2016-03-08 18:16:47 +0000
commitc0cb90c608f7dcb0807e05c70050d2e238d6c4e9 (patch)
treeb66b70468004343789d532b1dc757e71177b0966
parentd849e23b1c6b7278aef2f460723ac17cdc63e1a7 (diff)
downloadquagga-c0cb90c608f7dcb0807e05c70050d2e238d6c4e9.tar.bz2
quagga-c0cb90c608f7dcb0807e05c70050d2e238d6c4e9.tar.xz
Revert "bgpd: Lower BGP's default keepalive/holdtime to 3s/9s"
This reverts commit f89b09be92bed03b1e5add55dc14ef92e94c52e1. Martin Winter has reported reliability issues in testing on some platforms. We need a more comprehensive way to deal with defaults and updating them, e.g. profiles of some kind. Defer this change till after next release.
-rw-r--r--bgpd/bgpd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h
index 5be5a19c..7665d9d0 100644
--- a/bgpd/bgpd.h
+++ b/bgpd/bgpd.h
@@ -743,8 +743,8 @@ struct bgp_nlri
/* BGP timers default value. */
#define BGP_INIT_START_TIMER 5
-#define BGP_DEFAULT_HOLDTIME 9
-#define BGP_DEFAULT_KEEPALIVE 3
+#define BGP_DEFAULT_HOLDTIME 180
+#define BGP_DEFAULT_KEEPALIVE 60
#define BGP_DEFAULT_EBGP_ROUTEADV 30
#define BGP_DEFAULT_IBGP_ROUTEADV 5
#define BGP_CLEAR_CONNECT_RETRY 20