Re: [GoBGP-devel] GoBGP set Local Preference

2015-11-05 Thread Wataru Ishida
Hi Thanks for finding and trying GoBGP! https://github.com/osrg/gobgp/commit/1460ef0ba46d0a0836fc5314d5e5c23ba76fd047 just added the feature to set local preference $ gobgp global rib add 10.33.0.0/24 local-pref 100 Thanks Wataru > On Nov 6, 2015, at 1:25 PM, Angel Lopez Delgado > wrote: >

Re: [GoBGP-devel] GoBGP set Local Preference

2015-11-08 Thread Wataru Ishida
100 0 ? > > Am I missing something? > > Thank you very much. > > Regards. > > > > On Thu, Nov 5, 2015 at 10:45 PM, Wataru Ishida > wrote: > Hi > > Thanks for finding and trying GoBGP! > > https://github.com/osrg/go

Re: [GoBGP-devel] GoBGP set Local Preference

2015-11-10 Thread Wataru Ishida
200} > {LocalPref: 100} {Origin: ?}] > > Thank you for all your help it is highly appreciated. > > Regards > > > On Sun, Nov 8, 2015 at 5:31 PM, Wataru Ishida > wrote: > Hi > > Sorry for the incomplete fix. > > https://github.com/osrg/gobgp/commit

Re: [GoBGP-devel] GoBGP set Local Preference

2015-11-10 Thread Wataru Ishida
reme@ubuntu:~$ gobgp neighbor 10.10.10.101 adj-out > Network Next Hop AS_PATH Attrs > 1.1.0.0/16 10.10.10.102 [{Med: 200} > {LocalPref: 100} {Origin: ?}] > > > Thank you!. > > Best Regards &

Re: [GoBGP-devel] Policies / filtering

2015-11-26 Thread Wataru Ishida
Hi, Thank you for the report. This is kinda bug. Since a non-route-server-client neighbor can’t have any import/export policy, the configuration you tried must be warned (I will work on this soon). If you turn route-server-client mode for a neighbor, your configuration will work [Neighbors] [[

Re: [GoBGP-devel] Policies / filtering

2015-11-30 Thread Wataru Ishida
onditions: NeighborSet: ANY n0 Actions: REJECT Thanks, Wataru > On Dec 1, 2015, at 1:18 AM, Arnaud Fenioux wrote: > > Hello Wataru, > > Thank you for your answer, > >> On 27 Nov 2015, at 08:54, Wataru Ishida wrote: >> >> Since a non-route-server

Re: [GoBGP-devel] about BMP client status

2016-01-09 Thread Wataru Ishida
GoBGP supports BMP version 3 (https://tools.ietf.org/html/draft-ietf-grow-bmp-16) It should work with openbmp. see here for the configuration https://github.com/osrg/gobgp/blob/master/docs/sources/bmp.md > On Jan 8, 2016, at 11:10 AM, Evelio Vila wrote: > > Hello, > > What is the status of

Re: [GoBGP-devel] How to specify multihop option for neighbor?

2016-01-11 Thread Wataru Ishida
Please refer to this. https://github.com/osrg/gobgp/blob/master/docs/sources/configuration.md > On Jan 10, 2016, at 1:54 AM, Pavel Odintsov wrote: > > Hello! > > After recent GoBGP's commits my awesome configuration become broken. I > have ported almost all things manually to new format (thank

Re: [GoBGP-devel] How to specify multihop option for neighbor?

2016-01-11 Thread Wataru Ishida
Also, this might help to translate old configuration to latest one https://gist.github.com/ishidawataru/c94e5963dd8220a60c49 > On Jan 12, 2016, at 11:02 AM, Wataru Ishida > wrote: > > Please refer to this. > > https://github.com/osrg/gobgp/blob/master/docs/sources/configu

Re: [GoBGP-devel] GoBGP as a l2vpn-vpls route reflector

2016-05-08 Thread Wataru Ishida
You mean RFC4761? Unfortunately, GoBGP doesn’t have support for that. Thanks, Wataru > On May 6, 2016, at 11:13 AM, Manuel Marín wrote: > > Dear GoBGP community > > We are planning to use GoBGP as a route reflector for VPLS BGP (l2vpn-vpls). > Does the current version support this feature? >

Re: [GoBGP-devel] Code Flow for Serialize Function for Various BGP Attributes..

2016-08-17 Thread Wataru Ishida
Hi, the code flow of BGP Update serialization is https://github.com/osrg/gobgp/blob/master/server/fsm.go#L1036 https://github.com/osrg/gobgp/blob/master/packet/bgp/bgp.go#L7057 https://github.com/osrg/gobgp/blob/master/packet/bgp/bgp.go#L6832 func (p *PathAttributeLocalPref) Serialize() Thank

Re: [GoBGP-devel] defining variables in GoBGP

2017-02-10 Thread Wataru Ishida
Hi, GoBGP doesn’t have built-in template feature. However, since GoBGP uses standard format (toml, yaml, json) for its configuration file, I’d recommend to generate a configuration file using any programming languages you like. Thanks, Wataru > On Feb 10, 2017, at 7:02 PM, Stefan Plug wrote:

Re: [GoBGP-devel] Configuration File Syntax - Conversion from Bird

2017-02-23 Thread Wataru ISHIDA
Hi, GoBGP configuration file doesn't support that. You can use shell script or something else to inject routes right after starting gobgpd. Another option is using zebra integration feature. You can write static routes to zebra's configuration file, and import them to gobgpd. https://github.com