diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-12-30 20:50:27 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-09 22:51:23 +0900 |
commit | aff1c244ad0d88a814f2ce573800717ccd08b450 (patch) | |
tree | 711b432961c52c76a70cd76a980d00ad956c0d5b /docs | |
parent | f4c07da88154dd4b21012576a4ceb205715f4b3e (diff) |
bmp: use watcher infra to implement bmp feature
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sources/bmp.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sources/bmp.md b/docs/sources/bmp.md index b8333cd4..f798ed26 100644 --- a/docs/sources/bmp.md +++ b/docs/sources/bmp.md @@ -12,14 +12,14 @@ Assume you finished [Getting Started](https://github.com/osrg/gobgp/blob/master/ ## <a name="config"> Configuration -Add `[bmp-servers]` section to enable BMP like below. +Add `[bmp-servers]` section under `[global]` to enable BMP like below. ```toml [global.config] as = 64512 router-id = "192.168.255.1" -[[bmp-servers]] +[[global.bmp-servers]] [bmp-servers.config] address = "127.0.0.1" port=11019 |