From: Donald Sharp Date: Fri, 11 Sep 2015 12:44:31 +0000 (-0700) Subject: quagga netlink buffer size increase X-Git-Tag: frr-2.0-rc1~1258 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ef7f176df3a26d07d5c968ed36c7b74c4ec4a180;p=matthieu%2Ffrr.git 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 --- 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"