diff options
Diffstat (limited to 'docs/sources')
-rw-r--r-- | docs/sources/bmp.md | 11 | ||||
-rw-r--r-- | docs/sources/configuration.md | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/docs/sources/bmp.md b/docs/sources/bmp.md index 574a23d9..e6f6e2bb 100644 --- a/docs/sources/bmp.md +++ b/docs/sources/bmp.md @@ -52,6 +52,17 @@ Enable all policies support as follows: route-monitoring-policy = "all" ``` +To enable BMP stats reports, specify the interval seconds to send statistics messages. +The default value is 0 and no statistics messages are sent. +Please note the range of this interval is 15 though 65535 seconds. + +```toml +[[bmp-servers]] + [bmp-servers.config] + address = "127.0.0.1" + port=11019 + statistics-timeout = 3600 +``` ## <a name="verify"> Verification diff --git a/docs/sources/configuration.md b/docs/sources/configuration.md index c00b04fa..7403834c 100644 --- a/docs/sources/configuration.md +++ b/docs/sources/configuration.md @@ -30,6 +30,8 @@ [bmp-servers.config] address = "127.0.0.1" port = 11019 + route-monitoring-policy = "pre-policy" + statistics-timeout = 3600 [[mrt-dump]] dump-type = "updates" |