diff options
author | Russ White <russ@riw.us> | 2021-01-05 16:26:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 16:26:18 +0100 |
commit | ee117a8bd662f25a6d296daf78f53da9b9a86abd (patch) | |
tree | 6de7b2f00b0303716d7062318c4fc9f28fac025e /yang | |
parent | Merge pull request #6810 from Orange-OpenSource/link_state (diff) | |
parent | doc: Add paragraph about `bgp suppress-duplicates` command (diff) | |
download | frr-ee117a8bd662f25a6d296daf78f53da9b9a86abd.tar.xz frr-ee117a8bd662f25a6d296daf78f53da9b9a86abd.zip |
Merge pull request #7507 from ton31337/fix/bgpd_do_not_send_update_if_path_really_did_not_change
bgpd: Do not send BGP UPDATE if the route actually not changed
Diffstat (limited to 'yang')
-rw-r--r-- | yang/frr-bgp-common.yang | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/yang/frr-bgp-common.yang b/yang/frr-bgp-common.yang index cb1a6a8f5..1840e3728 100644 --- a/yang/frr-bgp-common.yang +++ b/yang/frr-bgp-common.yang @@ -358,6 +358,13 @@ submodule frr-bgp-common { "Apply administrative shutdown to newly configured peers."; } + leaf suppress-duplicates { + type boolean; + default "true"; + description + "Suppress duplicate updates if the route actually not changed."; + } + leaf ebgp-requires-policy { type boolean; default "true"; |