diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-11-17 19:42:48 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-11-17 19:42:48 +0100 |
commit | fbe18024e7d32a1302c66949c391eaafb8803821 (patch) | |
tree | d2f0c5810b91bcb81d54120868e153f16e987174 /op-mode-definitions/show-protocols-bfd.xml | |
parent | b4b11de59c1f53a15e1d5afbc0d392dfa768fb0d (diff) | |
download | vyos-1x-fbe18024e7d32a1302c66949c391eaafb8803821.tar.gz vyos-1x-fbe18024e7d32a1302c66949c391eaafb8803821.zip |
Import BFD implementation from current. Implementation by Christian Poessinger et al.
Diffstat (limited to 'op-mode-definitions/show-protocols-bfd.xml')
-rw-r--r-- | op-mode-definitions/show-protocols-bfd.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/op-mode-definitions/show-protocols-bfd.xml b/op-mode-definitions/show-protocols-bfd.xml new file mode 100644 index 000000000..398a81d1b --- /dev/null +++ b/op-mode-definitions/show-protocols-bfd.xml @@ -0,0 +1,46 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="protocols"> + <children> + <node name="bfd"> + <children> + <node name="peer"> + <properties> + <help>Show all Bidirectional Forwarding Detection (BFD) peer status</help> + </properties> + <command>/usr/bin/vtysh -c "show bfd peers"</command> + <children> + <leafNode name="counters"> + <properties> + <help>Show Bidirectional Forwarding Detection (BFD) peer counters</help> + </properties> + <command>/usr/bin/vtysh -c "show bfd peers counters"</command> + </leafNode> + </children> + </node> + <tagNode name="peer"> + <properties> + <help>Show Bidirectional Forwarding Detection (BFD) peer status</help> + <completionHelp> + <script>/usr/bin/vtysh -c "show bfd peers" | awk '/[:blank:]*peer/ { printf "%s\n", $2 }'</script> + </completionHelp> + </properties> + <command>/usr/bin/vtysh -c "show bfd peers" | awk -v BFD_PEER=$5 '($0 ~ peer BFD_PEER) { system("/usr/bin/vtysh -c \"show bfd " $0 "\"") }'</command> + <children> + <leafNode name="counters"> + <properties> + <help>Show Bidirectional Forwarding Detection (BFD) peer counters</help> + </properties> + <command>/usr/bin/vtysh -c "show bfd peers" | awk -v BFD_PEER=$5 '($0 ~ peer BFD_PEER) { system("/usr/bin/vtysh -c \"show bfd " $0 " counters\"") }'</command> + </leafNode> + </children> + </tagNode> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |