diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-06 15:59:03 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-06 15:59:03 +0200 |
commit | a0134973c0c8f5db15861c838f1d18380582265b (patch) | |
tree | 53b465dbbb99a23275b14f017eac6d12c069e94e /op-mode-definitions/show-protocols-static.xml | |
parent | 50e65d0ccd2f6b09f5591670f99b30f5fe80b8bb (diff) | |
download | vyos-1x-a0134973c0c8f5db15861c838f1d18380582265b.tar.gz vyos-1x-a0134973c0c8f5db15861c838f1d18380582265b.zip |
op-mode: rename show-arp.xml to show-protocols-static.xml
Diffstat (limited to 'op-mode-definitions/show-protocols-static.xml')
-rw-r--r-- | op-mode-definitions/show-protocols-static.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/op-mode-definitions/show-protocols-static.xml b/op-mode-definitions/show-protocols-static.xml new file mode 100644 index 000000000..1211a7fe5 --- /dev/null +++ b/op-mode-definitions/show-protocols-static.xml @@ -0,0 +1,32 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="protocols"> + <children> + <node name="static"> + <children> + <node name="arp"> + <properties> + <help>Show Address Resolution Protocol (ARP) information</help> + </properties> + <command>/usr/sbin/arp -e -n</command> + <children> + <tagNode name="interface"> + <properties> + <help>Show Address Resolution Protocol (ARP) cache for specified interface</help> + <completionHelp> + <script>${vyos_completion_dir}/list_interfaces.py -b</script> + </completionHelp> + </properties> + <command>/usr/sbin/arp -e -n -i "$6"</command> + </tagNode> + </children> + </node> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |