diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-05-01 10:06:42 +0000 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-05-01 10:16:09 +0000 |
commit | 232b30117c8eafc5cae7aec81ce9fafe742bdd4b (patch) | |
tree | 235342a7345b6034f02a1864485a4c96e25d3ea2 /table/table_manager.go | |
parent | cea5941db2dd9268ad35b5f494480350d747d404 (diff) |
table: add support for route target constraint nlri
add rtc route
$ gobgp global rib add 65000 77 -a rtc
check it
$ gobgp global rib -a rtc
Network Next Hop AS_PATH Age Attrs
*> 65001:65000:75 0.0.0.0 [65001] 00:15:35 [{Origin: IGP}]
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/table_manager.go')
-rw-r--r-- | table/table_manager.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/table/table_manager.go b/table/table_manager.go index d4da1735..8d3b18ca 100644 --- a/table/table_manager.go +++ b/table/table_manager.go @@ -131,6 +131,8 @@ func NewTableManager(owner string, rfList []bgp.RouteFamily) *TableManager { t.Tables[bgp.RF_EVPN] = NewEVPNTable(0) case bgp.RF_ENCAP: t.Tables[bgp.RF_ENCAP] = NewEncapTable() + case bgp.RF_RTC_UC: + t.Tables[bgp.RF_RTC_UC] = NewRouteTargetTable() } } t.owner = owner |