Re: Howto bind BGP to single interface?

2018-02-14 Thread Ondrej Zajicek
On Wed, Feb 14, 2018 at 01:20:59PM -0500, Michael Wayne wrote: > Trying to determine what is wrong with "strict bind yes;" under "protocol > bgp". The docs suggest that my syntax is correct. > > protocol bgp vultr { > local as 1234; > source address 111.22.33.44; > # stric

Re: Howto bind BGP to single interface?

2018-02-14 Thread Michael McConnell
Err. scratch my previous example. The usage in the doc. example is; protocol bgp { local 192.168.11.1 as 1000; neighbor 192.168.11.2 as 2000; # local 192.168.1.1 as 1000; # neighbor 192.168.2.1 as 2000; # multihop; # rr client; # strict bind; #

Re: Howto bind BGP to single interface?

2018-02-14 Thread Michael McConnell
Just a guess, but in the code is appears to be a bool; | bgp_proto STRICT BIND bool ';' { BGP_CFG->strict_bind = $4; } Try, strict bind 1; Cheers, Mike -- Michael McConnell WINK Streaming; email: mich...@winkstreaming.com toll free: 877-GO-4-WINK x 7400 direct: +1 312 281-5434 cell: +506 8706-

Howto bind BGP to single interface?

2018-02-14 Thread Michael Wayne
Trying to determine what is wrong with "strict bind yes;" under "protocol bgp". The docs suggest that my syntax is correct. protocol bgp vultr { local as 1234; source address 111.22.33.44; # strict bind yes; # Fails if uncommented import filter accept_all;