summaryrefslogtreecommitdiffhomepage
path: root/docs/sources/bmp.md
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-05-16 11:41:04 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-05-22 12:10:07 +0900
commitfa1378f58bb6306e0c327f2a69a798a46c9865a4 (patch)
tree688d42e6befce07837714d86383c65ce605bd5d4 /docs/sources/bmp.md
parentd2840e6760b0a2576b9f4cab7bca0a1d10d8b84d (diff)
bmp: Obsolete "both" option for route-monitoring-policy
Because of the introduction of "local-rib" and "all" options for route-monitoring-policy, this patch obsoletes "both" option. Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'docs/sources/bmp.md')
-rw-r--r--docs/sources/bmp.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/sources/bmp.md b/docs/sources/bmp.md
index 6d835e85..574a23d9 100644
--- a/docs/sources/bmp.md
+++ b/docs/sources/bmp.md
@@ -25,7 +25,12 @@ Add `[bmp-servers]` session to enable BMP.
port=11019
```
-Flows can be post-policy, pre-policy, or both. Pre-policy flows are the default.
+The supported route monitoring policy types are:
+- pre-policy (Default)
+- post-policy
+- both (Obsoleted)
+- local-rib
+- all
Enable post-policy support as follows:
@@ -37,14 +42,14 @@ Enable post-policy support as follows:
route-monitoring-policy = "post-policy"
```
-Enable both pre-policy and post-policy support as follows:
+Enable all policies support as follows:
```toml
[[bmp-servers]]
[bmp-servers.config]
address = "127.0.0.1"
port=11019
- route-monitoring-policy = "both"
+ route-monitoring-policy = "all"
```