diff options
author | Mark Strother <mark@pacific.ca> | 2017-03-04 00:55:47 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-03-05 05:49:18 +0900 |
commit | 0cfb8f65a07f0b639ff763223a3868b89f68e306 (patch) | |
tree | 92e8f5d42c315d74920e89611095293706a584c2 /docs/sources/bmp.md | |
parent | 0d908abbcb8ee29109e01ec6374ac943e811eae8 (diff) |
doc: improve bmp documentation
Add documentation for route-monitoring-policy = "both".
Diffstat (limited to 'docs/sources/bmp.md')
-rw-r--r-- | docs/sources/bmp.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/sources/bmp.md b/docs/sources/bmp.md index 795f8287..6d835e85 100644 --- a/docs/sources/bmp.md +++ b/docs/sources/bmp.md @@ -25,7 +25,9 @@ Add `[bmp-servers]` session to enable BMP. port=11019 ``` -Flows can be post or pre-policy. Pre-policy flows are the default. To enable post-policy support change the configuration as follows. +Flows can be post-policy, pre-policy, or both. Pre-policy flows are the default. + +Enable post-policy support as follows: ```toml [[bmp-servers]] @@ -35,6 +37,16 @@ Flows can be post or pre-policy. Pre-policy flows are the default. To enable pos route-monitoring-policy = "post-policy" ``` +Enable both pre-policy and post-policy support as follows: + +```toml +[[bmp-servers]] + [bmp-servers.config] + address = "127.0.0.1" + port=11019 + route-monitoring-policy = "both" +``` + ## <a name="verify"> Verification |