RE: Hardware Server requirements for building up BIRD

2019-05-27 Thread Валерий Н . Лутошкин
Hello, Isaac, Bird doesn’t use multicore, so you better get a high-frequency CPU, like E3-1285 v6. If you’re going to use it as a route server, not a router, all other hardware doesn’t really matter there. Regards, Valery From: Bird-users [mailto:bird-users-boun...@network.cz] On Behalf Of

Hardware Server requirements for building up BIRD

2019-05-27 Thread Isaac HO
Dear All, Would you mind suggesting the hardware configuration to us? Please find our BGP sessions status for your reference: IPv4 Session 600 (around) IPv6 Session 400 (around) Thanks, Isaac

Re: Help with SNMP for BIRD

2019-05-27 Thread Glenn Peace
Hello Michael, Thanks for your message. Unfortunately, I don't have programing knowledge to help developing this. If I can help anyone who takes the challenge, I'll be glad to. Best, Glenn Peace, bird does not include a SNMP agent. You have to find a different solution for now.

Re: Help with SNMP for BIRD

2019-05-27 Thread Glenn Peace
Hello Barry, Thanks for the suggestions We'll take a look at Bird's Eye, and since you wrote it; I'll keep your contact handy in case our systems guys need any help putting it to work. Best, Glenn Peace, On 5/21/19, 23:59, "Barry O'Donovan" wrote: As it stands, Bird does not

Re: [PATCH] Fix an issue where bird may accidently close a socket

2019-05-27 Thread Kenth Eriksson
On Mon, 2019-05-27 at 17:12 +0200, Ondrej Zajicek wrote: > CAUTION: This email originated from outside of the organization. Do > not click links or open attachments unless you recognize the sender > and know the content is safe. > > > On Mon, May 27, 2019 at 02:28:52PM +0200, Kenth Eriksson

Re: [PATCH] Fix an issue where bird may accidently close a socket

2019-05-27 Thread Ondrej Zajicek
On Mon, May 27, 2019 at 02:28:52PM +0200, Kenth Eriksson wrote: > Datagram sockets may return 0 and stream sockets can return 0 > if the requested number of bytes to read is 0. Hi You mean that if count arg to read() is 0? How that may happen? -- Elen sila lumenn' omentielvo Ondrej

[PATCH] Fix an issue where bird may accidently close a socket

2019-05-27 Thread Kenth Eriksson
Datagram sockets may return 0 and stream sockets can return 0 if the requested number of bytes to read is 0. Signed-off-by: Kenth Eriksson --- sysdep/unix/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index d1d86e3b..44dd3172 100644