From ef7f176df3a26d07d5c968ed36c7b74c4ec4a180 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 11 Sep 2015 05:44:31 -0700 Subject: [PATCH] quagga netlink buffer size increase Ticket: CM-7380 Reviewed-by: CCR-3478 Testing: See Bug This is a fix to allow the netlink buffer size to grow to a reasonable number over the current 4mb choosen. This number was choosen by running some smoke tests that would fail and experimenting to find a number that worked with those tests and then adding some headroom to that number. This is a bit of a temporary fix due to timelines instead of the real fix which is to write the code to properly recover from a netlink buffer overflow. Signed-off-by: Donald Sharp --- cumulus/etc/quagga/debian.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/etc/quagga/debian.conf b/cumulus/etc/quagga/debian.conf index 27ea461af9..da2764ca35 100644 --- a/cumulus/etc/quagga/debian.conf +++ b/cumulus/etc/quagga/debian.conf @@ -4,7 +4,7 @@ # Check /etc/pam.d/quagga if you intend to use "vtysh"! # vtysh_enable=yes -zebra_options=" --daemon -A 127.0.0.1" +zebra_options=" -s 16777216 --daemon -A 127.0.0.1" bgpd_options=" --daemon -A 127.0.0.1" ospfd_options=" --daemon -A 127.0.0.1" ospf6d_options=" --daemon -A ::1" -- 2.39.5