When you shutdown interfaces with ifdown -a -X eth0
bgp would still attempt to talk to it's configured
neighbors but since the interface is down it would
just complain and complain. Now that we have
somewhat aggressive timers the error message
really starts to show up.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
if (ret < 0)
{
- zlog_info ("bind to interface %s failed", name);
+ if (bgp_debug_neighbor_events (peer))
+ zlog_debug ("bind to interface %s failed", name);
return ret;
}
#endif /* SO_BINDTODEVICE */