bird-users@network.cz

2020-04-27 Thread Akshay kumar
Thank you so much Pascal !!! Regards Akshay On Mon, 27 Apr 2020 at 14:43, Pascal Mathis wrote: > Hi Akshay, > > I stumbled across the same issue a few days ago and can provide you with > a working solution. > > On 27.04.20 22:00, Akshay kumar wrote: > > Its getting failed, seems to be related t

bird-users@network.cz

2020-04-27 Thread Pascal Mathis
Hi Akshay, I stumbled across the same issue a few days ago and can provide you with a working solution. On 27.04.20 22:00, Akshay kumar wrote: > Its getting failed, seems to be related to apt key is missing, please > advise. as mentioned on https://bird.network.cz/?download&tdir=debian/, the Deb

bird-users@network.cz

2020-04-27 Thread Akshay kumar
Hi all, I am trying to install bird2 from apt as mention in https://bird.network.cz/?download&tdir=debian/ for debian. Its getting failed, seems to be related to apt key is missing, please advise. "W: GPG error: http://bird.network.cz/debian buster InRelease: The following signatures couldn't be

Re: Need to run 'configure' command two times to apply route filter change

2020-04-27 Thread Nasato Goto
I got it. Thank you, Ondrej! Best regards, - Nasato Goto JPNAP / INTERNET MULTIFEED CO. g...@mfeed.ad.jp - 2020/04/27 23:16 に、"Ondrej Zajicek" を書き込みました: On Mon, Apr 27, 2020 at 02:07:56PM +, Nasato Goto wrote: > Hi all, > > I run BIRD v2.0.7 as a route server.

How to fix BGP 'Invalid NEXT_HOP attribute' errors?

2020-04-27 Thread Erik Zscheile
Hi, I get relatively much "log spam" about one specific BGP session which logs dozens of 'Invalid NEXT_HOP attribute' messages. I haven't found much information online, but have already tried to find out which code path in BIRD produces the message. (The peers all have a BIRD-2.0.7 installation)

Re: Need to run 'configure' command two times to apply route filter change

2020-04-27 Thread Ondrej Zajicek
On Mon, Apr 27, 2020 at 02:07:56PM +, Nasato Goto wrote: > Hi all, > > I run BIRD v2.0.7 as a route server. > When I changed the route filter configuration in BIRD, for example adding > prefix entry to a filter, > I needed to execute 'configure' command twice to apply new route filter. > > T

Need to run 'configure' command two times to apply route filter change

2020-04-27 Thread Nasato Goto
Hi all, I run BIRD v2.0.7 as a route server. When I changed the route filter configuration in BIRD, for example adding prefix entry to a filter, I needed to execute 'configure' command twice to apply new route filter. The first 'configure' command didn't affect. The prefix which I added to filte

Re: Correct way to advertise network in BIRD 2.x

2020-04-27 Thread Laura Smith
Thanks James. Will try that. ‐‐‐ Original Message ‐‐‐ On Monday, 27 April 2020 11:25, James Swineson wrote: > Just use something like: > > protocol static { > ipv4; > route 192.168.1.0/24 unreachable; > } > > You don't really need a valid next-hop if you are only importing static > rou

Correct way to advertise network in BIRD 2.x

2020-04-27 Thread Laura Smith
Hi, I am unfortunatley finding the docs a little terse in terms of lack of real-life examples. I have a simple question, how do I advertise networks to my peers ?  I am guessing the syntax below is not correct because I see error messages such as "Apr 27 11:08:53 vpw bird: KRT: Received route

Re: Correct way to advertise network in BIRD 2.x

2020-04-27 Thread James Swineson
Just use something like: protocol static { ipv4; route 192.168.1.0/24 unreachable; } You don't really need a valid next-hop if you are only importing static routes to eBGP since eBGP will overwrite next-hop to yourself. On Mon, Apr 27, 2020, at 10:15, Laura Smith wrote: > Hi, > > I am