summaryrefslogtreecommitdiffstats
path: root/yang/frr-bfdd.yang
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2021-03-10 15:31:57 +0100
committerIgor Ryzhov <iryzhov@nfware.com>2021-03-16 20:14:57 +0100
commit4df3e31c3d09f83340e7c1a0d7645d0bdddcb68f (patch)
tree01b36a351e9a10d91d25d5dd802bb7f09a69108c /yang/frr-bfdd.yang
parentMerge pull request #8260 from volta-networks/fix_isis_snmp_test (diff)
downloadfrr-4df3e31c3d09f83340e7c1a0d7645d0bdddcb68f.tar.xz
frr-4df3e31c3d09f83340e7c1a0d7645d0bdddcb68f.zip
bfdd: separate echo rx/tx timers
Currently there is a single interval for both RX and TX echo functions. This commit introduces separate RX and TX timers for echo packets. The main advantage is to be able to set the receive interval to zero when we don't want to receive echo packets from the remote system. Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to '')
-rw-r--r--yang/frr-bfdd.yang9
1 files changed, 8 insertions, 1 deletions
diff --git a/yang/frr-bfdd.yang b/yang/frr-bfdd.yang
index 0f090a1b7..d21ff5068 100644
--- a/yang/frr-bfdd.yang
+++ b/yang/frr-bfdd.yang
@@ -210,7 +210,14 @@ module frr-bfdd {
type uint32;
units microseconds;
default 50000;
- description "Minimum desired control packet transmission interval";
+ description "Minimum desired echo packet transmission interval";
+ }
+
+ leaf required-echo-receive-interval {
+ type uint32;
+ units microseconds;
+ default 50000;
+ description "Minimum required echo packet receive interval";
}
}