summaryrefslogtreecommitdiffhomepage
path: root/docs/sources
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-05-10 16:03:15 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-05-10 16:03:15 +0900
commit69df401cdd583ba9911e3416a82257d7e9a63ae6 (patch)
tree042f73ca4c71669db6ce12e80a5ce360c5fec45b /docs/sources
parent64ff0fec119b822a7cac9c7fb17f51d70865c39b (diff)
docs: mrt update
- remove MRT dump streaming GRPC API - add the examples of MRT BGP4MP dump feature Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'docs/sources')
-rw-r--r--docs/sources/mrt.md121
1 files changed, 36 insertions, 85 deletions
diff --git a/docs/sources/mrt.md b/docs/sources/mrt.md
index b4ea5fdd..ce1d0923 100644
--- a/docs/sources/mrt.md
+++ b/docs/sources/mrt.md
@@ -7,108 +7,59 @@ This page explains how to play with GoBGP's MRT feature.
Assume you finished [Getting Started](https://github.com/osrg/gobgp/blob/master/docs/sources/getting-started.md).
## Contents
-- [Configuration](#section0)
-- [Dump MRT table v2 records](#section1)
- - [Dump neighbor's local table](#section1.1)
-- [Inject routes from MRT table v2 records](#section2)
-
-## <a name="section0"> Configuration
-You don't need any special configuration for MRT feature.
-This page assume the configuration below.
-
-```toml
-[global.config]
- as = 64512
- router-id = "192.168.255.1"
-[[neighbors]]
- [neighbors.config]
- neighbor-address = "10.0.0.1"
- peer-as = 65001
-```
-
-## <a name="section1">Dump MRT Table v2 Records
-
-Instant dump can be done like below
+- [Inject routes from MRT table v2 records](#section0)
+- [Dump updates in MRT BGP4MP format](#section1)
+ - [Configuration](#section1.1)
+## <a name="section0"> Inject routes from MRT table v2 records
+Route injection can be done by
```bash
-$ gobgp mrt dump rib global
-mrt dump: rib_ipv4_20150809_233952
-$ ls -la rib*
-rib_ipv4_20150809_233952
+$ gobgp mrt inject global <dumpfile> [<number of prefix to inject>]
```
-To dump ipv6 routes, type
-
-```bash
-$ gobgp mrt dump rib global -a ipv6
-mrt dump: rib_ipv6_20150809_234012
-```
+## <a name="section1"> Dump updates in MRT BGP4MP format
-If you want to dump periodically, specify dump interval (unit is second)
-```bash
-# dump hourly. this will block
-$ gobgp mrt dump rib global $((60*60))
-mrt dump: rib_ipv4_20150809_234438
-...
-```
+### <a name="section1.1"> Configuration
-You can change output directory by `-o <outdir>` and filename format by `-f <format>`
+With the following configuration, gobgpd continuously dumps BGP update
+messages to `/tmp/updates.dump` file in the BGP4MP format.
-```bash
-# change the output directory and the filename of dumps
-$ gobgp mrt dump rib global -o /dump/here -f mydailydump_{{.Y}}_{{.M}}_{{.D}} $((60*60*24))
-mrt dump: /dump/here/rib_2015_08_09
-...
-```
+```toml
+[global.config]
+as = 64512
+router-id = "10.0.255.254"
-Filename format is same as golang [text/template](http://golang.org/pkg/text/template/) package template.
-Below is the supported variables you can use.
-
-| value | meaning |
-|:---------------------:|:---------------------------------------------:|
-| {{.Y}} | Year (e.g. 2015) |
-| {{.M}} | Month (e.g. 08) |
-| {{.D}} | Day (e.g. 09) |
-| {{.H}} | Hour (e.g. 23) |
-| {{.Min}} | Minute (e.g. 47) |
-| {{.Sec}} | Second (e.g. 10) |
-| {{.Af}} | Address Family ( `ipv4` \| `ipv6` \| `l2vpn`) |
-| {{.NeighborAddress }} | Neighbor Address (e.g. 10.0.0.1) |
-| {{.Resource}} | Resource ( `global` \| `local` ) |
-
-### <a name="section1.1"> Dump neighbor's local table
-GoBGP supports multiple RIB for route server [feature](https://github.com/osrg/gobgp/blob/master/docs/sources/route-server.md).
-GoBGP can also dump these tables which is local to neighbors
+[[neighbors]]
+ [neighbors.config]
+ peer-as = 65001
+ neighbor-address = "10.0.255.1"
-```bash
-$ gobgp mrt dump rib neighbor 10.0.0.1 -o /dump/local $((60*60))
-rpc error: code = 2 desc = "no local rib for 10.0.0.1"
+[[mrt-dump]]
+ dump-type = "updates"
+ file-name = "/tmp/updates.dump"
```
-Oops! Before trying this feature, you must enable route server feature.
-Configuration is something like below.
+Also gobgpd supports log rotation; a new dump file is created
+periodically, and the old file is renamed to a different name. With
+the following configuration, gobgpd creates a new dump file every 180
+seconds such as `/tmp/20160510.1546.dump`. The format of a name can be
+specified in golang's
+[time](https://golang.org/pkg/time/#pkg-constants) package's format.
```toml
[global.config]
- as = 64512
- router-id = "192.168.255.1"
+as = 64512
+router-id = "10.0.255.254"
+
[[neighbors]]
[neighbors.config]
- neighbor-address = "10.0.0.1"
peer-as = 65001
- [neighbors.route-server.config]
- route-server-client = true
-```
-
-OK, let's try again.
+ neighbor-address = "10.0.255.1"
-```bash
-$ gobgp mrt dump rib neighbor 10.0.0.1 -o /dump/local
-mrt dump: /dump/local/rib_10.0.0.1_20150809_234543
+[[mrt-dump]]
+ dump-type = "updates"
+ file-name = "/tmp/log/20060102.1504.dump"
+ interval = 180
```
-## <a name="section2"> Inject routes from MRT table v2 records
-Route injection can be done by
-```bash
-$ gobgp mrt inject global <dumpfile> [<number of prefix to inject>]
-```
+