diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-04 17:29:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-04 17:29:51 +0100 |
commit | 7650ba287273eb0072b272bad171ddcfe13aa0fd (patch) | |
tree | 03e333d00dab15070f424425924d3b558ba66f47 /op-mode-definitions/show-ip.xml.in | |
parent | 7288d31824cba80e99a66b2484feac7d0f46aacc (diff) | |
parent | 884b280fa021f7c9c50dbf3585f0714ab9fc0181 (diff) | |
download | vyos-1x-7650ba287273eb0072b272bad171ddcfe13aa0fd.tar.gz vyos-1x-7650ba287273eb0072b272bad171ddcfe13aa0fd.zip |
Merge pull request #718 from jack9603301/T3283
op-mode: ip: T3283: Support for IPv4/IPv6 neigh tables
Diffstat (limited to 'op-mode-definitions/show-ip.xml.in')
-rw-r--r-- | op-mode-definitions/show-ip.xml.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/op-mode-definitions/show-ip.xml.in b/op-mode-definitions/show-ip.xml.in new file mode 100644 index 000000000..91564440d --- /dev/null +++ b/op-mode-definitions/show-ip.xml.in @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="ip"> + <properties> + <help>Show IPv4 routing information</help> + </properties> + <children> + <node name="neighbors"> + <properties> + <help>Show IPv4 Neighbor Discovery (ND) information</help> + </properties> + <command>${vyos_op_scripts_dir}/show_neigh.py --family inet</command> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |