diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-06 14:19:43 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-06 15:07:36 -0800 |
commit | d280168106c9ef9ed68ad117b913f52e6bae1827 (patch) | |
tree | 37d67be13c26c19a366e2c1d5621eff74a8984b4 /config | |
parent | fa6c8fe58b7ef9aca401262be8677bb4526c3fcd (diff) |
add route collector feature support
like openbgp's route collector, sends all updates (not only best).
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'config')
-rw-r--r-- | config/bgp_configs.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/bgp_configs.go b/config/bgp_configs.go index 4191bbd2..17baf726 100644 --- a/config/bgp_configs.go +++ b/config/bgp_configs.go @@ -1503,6 +1503,13 @@ type BmpServer struct { State BmpServerState `mapstructure:"state"` } +//struct for container gobgp:collector +type Collector struct { + // original -> gobgp:enabled + //gobgp:enabled's original type is boolean + Enabled bool `mapstructure:"enabled"` +} + //struct for container bgp-mp:l2vpn-evpn type L2vpnEvpn struct { // original -> bgp-mp:prefix-limit @@ -2031,6 +2038,8 @@ type Global struct { AfiSafis []AfiSafi `mapstructure:"afi-safis"` // original -> rpol:apply-policy ApplyPolicy ApplyPolicy `mapstructure:"apply-policy"` + // original -> gobgp:collector + Collector Collector `mapstructure:"collector"` // original -> gobgp:bmp-servers BmpServers []BmpServer `mapstructure:"bmp-servers"` // original -> gobgp:mrt |