diff options
author | sever-sever <v.gletenko@vyos.io> | 2021-01-15 13:49:05 +0000 |
---|---|---|
committer | sever-sever <v.gletenko@vyos.io> | 2021-01-15 13:49:05 +0000 |
commit | 04ddf85bcc9d5ec06ef51537f5cbca97548716f3 (patch) | |
tree | 9481ac0e6e6629cf9ec6e23f8fdd11d1efaabd3e /op-mode-definitions/show-ipv6-route.xml.in | |
parent | 931692c5e4b15eb5ab62cd537ffd915365429e1c (diff) | |
download | vyos-1x-04ddf85bcc9d5ec06ef51537f5cbca97548716f3.tar.gz vyos-1x-04ddf85bcc9d5ec06ef51537f5cbca97548716f3.zip |
op-mode: T3215: Fix show ipv6 route overlaps in nodes
Diffstat (limited to 'op-mode-definitions/show-ipv6-route.xml.in')
-rw-r--r-- | op-mode-definitions/show-ipv6-route.xml.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/op-mode-definitions/show-ipv6-route.xml.in b/op-mode-definitions/show-ipv6-route.xml.in index 9ac8687ab..065ea6f1f 100644 --- a/op-mode-definitions/show-ipv6-route.xml.in +++ b/op-mode-definitions/show-ipv6-route.xml.in @@ -19,12 +19,42 @@ </properties> <command>vtysh -c "show ipv6 route bgp"</command> </node> + <node name="cache"> + <properties> + <help>Show kernel IPv6 route cache</help> + </properties> + <command>ip -s -f inet6 route list cache</command> + </node> + <tagNode name="cache"> + <properties> + <help>Show kernel IPv6 route cache for a given route</help> + <completionHelp> + <list><h:h:h:h:h:h:h:h> <h:h:h:h:h:h:h:h/x></list> + </completionHelp> + </properties> + <command>ip -s -f inet6 route list cache $5</command> + </tagNode> <node name="connected"> <properties> <help>Show IPv6 connected routes</help> </properties> <command>vtysh -c "show ipv6 route connected"</command> </node> + <node name="forward"> + <properties> + <help>Show kernel IPv6 route table</help> + </properties> + <command>ip -f inet6 route list</command> + </node> + <tagNode name="forward"> + <properties> + <help>Show kernel IPv6 route table for a given route</help> + <completionHelp> + <list><h:h:h:h:h:h:h:h> <h:h:h:h:h:h:h:h/x></list> + </completionHelp> + </properties> + <command>ip -s -f inet6 route list $5</command> + </tagNode> <node name="isis"> <properties> <help>Show IPv6 IS-IS routes</help> |