diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-03-16 16:02:34 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-03-17 10:47:03 +0900 |
commit | 5120cfc7ca03bb5742123b16d1452749d62c8db4 (patch) | |
tree | d0b2c75657080546e660cd871094b712f88845c0 /docs/sources/bmp.md | |
parent | b06b3ad42fe07cafd4ffee3e21068a324bff5bba (diff) |
config: move Mrt/Bmp configuration outside of Global configuration
Global config basically store configuration whose change will cause
all neighbor session restart.
Mrt and Bmp configuration is not such. Put them outside of Global
config.
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'docs/sources/bmp.md')
-rw-r--r-- | docs/sources/bmp.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/sources/bmp.md b/docs/sources/bmp.md index bd9759c1..17c79fe4 100644 --- a/docs/sources/bmp.md +++ b/docs/sources/bmp.md @@ -12,15 +12,15 @@ Assume you finished [Getting Started](https://github.com/osrg/gobgp/blob/master/ ## <a name="config"> Configuration -Add `[bmp-servers]` section under `[global]` to enable BMP like below. +Add `[bmp-servers]` session to enable BMP like below. ```toml [global.config] as = 64512 router-id = "192.168.255.1" -[[global.bmp-servers]] - [global.bmp-servers.config] +[[bmp-servers]] + [bmp-servers.config] address = "127.0.0.1" port=11019 ``` |