How to establish BGP session between Bird and Quagga? I have two virtual machines created on FreeBSD. With a route server Quagga and another with Bird. But Bird did not establece connection with Quagga. I managed to establish session with a Mikrotik router but I can not with the route server Quagga. Does anyone know say what possible reason? -- Att, Mike Santos Farias Contato: (79) 9 8851-7565 (79) 9 8821-3108 (whatsapp)
On 15.2.2016 23:00, Mike Santos Farias wrote: Hi Mike! Can you share the configuration of Quagga and Bird with us? Ondrej
How to establish BGP session between Bird and Quagga? I have two virtual machines created on FreeBSD. With a route server Quagga and another with Bird. But Bird did not establece connection with Quagga. I managed to establish session with a Mikrotik router but I can not with the route server Quagga. Does anyone know say what possible reason?
-- Att, Mike Santos Farias
Contato: (79) 9 8851-7565 (79) 9 8821-3108 (whatsapp)
Not in the moment. I send tomorrow when you arrive at work. 2016-02-15 19:04 GMT-03:00 Ondrej Filip <feela@network.cz>:
On 15.2.2016 23:00, Mike Santos Farias wrote:
Hi Mike! Can you share the configuration of Quagga and Bird with us?
Ondrej
How to establish BGP session between Bird and Quagga? I have two virtual machines created on FreeBSD. With a route server Quagga and another with Bird. But Bird did not establece connection with Quagga. I managed to establish session with a Mikrotik router but I can not with the route server Quagga. Does anyone know say what possible reason?
-- Att, Mike Santos Farias
Contato: (79) 9 8851-7565 (79) 9 8821-3108 (whatsapp)
-- Att, Mike Santos Farias Graduando em Sistemas de Informação na UFS Estagiário em Gerenciamento e Configuração de Redes - BK Telecom Estagiário em Desenvolvimento e Manutenção de Sistemas - NTI/UFS Agente de Viagens - Clicktur Excursões Turísticas Contato: (79) 9 8851-7565 (79) 9 8821-3108 (whatsapp)
Hi. I have BIRD route server + Quagga BGP peer to it. All works perfectly. 16.02.2016 00:00, Mike Santos Farias пишет:
How to establish BGP session between Bird and Quagga? I have two virtual machines created on FreeBSD. With a route server Quagga and another with Bird. But Bird did not establece connection with Quagga. I managed to establish session with a Mikrotik router but I can not with the route server Quagga. Does anyone know say what possible reason?
-- Att, Mike Santos Farias
Contato: (79) 9 8851-7565 (79) 9 8821-3108 (whatsapp)
Dear Colleagues, If I need to add several communities, what's the filter syntax would be? I can add the community "43859:300" this way: protocol bgp leopard { export filter { if proto = "C21" then { bgp_community.add((43859,300)); accept; } }; } What if I want to add two communities: "43859:300" and "no-export" ? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru
Hello. Better move the filter to external filter. In your case this should seem like: filter export_to_bgp_leopard { if (proto = "C21") then { bgp_community.add((43859:300)); bgp_community.add((65535:65281)); #no-export 0xffffff01 - see RFC1997 accept; } } protocol bgp leopard { ... export filter export_to_bgp_leopard; .... } 2016-02-16 9:36 GMT+03:00 Victor Sudakov <vas@mpeks.tomsk.su>:
Dear Colleagues,
If I need to add several communities, what's the filter syntax would be?
I can add the community "43859:300" this way:
protocol bgp leopard { export filter { if proto = "C21" then { bgp_community.add((43859,300)); accept; } }; }
What if I want to add two communities: "43859:300" and "no-export" ?
-- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru
-- Anton.
Anton Danilov wrote:
Better move the filter to external filter.
For readability?
In your case this should seem like:
filter export_to_bgp_leopard { if (proto = "C21") then { bgp_community.add((43859:300)); bgp_community.add((65535:65281)); #no-export 0xffffff01 - see RFC1997 accept; } }
I think you meant "43859,300", not "43859:300" ? Thanks a lot! It works. Now I know there are no symbolic names for well-known communities for me. -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru
participants (5)
-
Andrew -
Anton Danilov -
Mike Santos Farias -
Ondrej Filip -
Victor Sudakov