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

2020-04-29 Thread Ondrej Zajicek
On Mon, Apr 27, 2020 at 10:25:44AM +, 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 > routes to eBGP since eBGP will overwrite next-hop

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