diff options
-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 |