blob: 1aea8eef6b1ae98f5d8ddf9489a0aea21cf6d51f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?xml version="1.0"?>
<interfaceDefinition>
<tagNode name="traceroute">
<properties>
<help>Track network path to node</help>
<completionHelp>
<list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>/usr/bin/traceroute "$2"</command>
</tagNode>
<node name="traceroute">
<children>
<tagNode name="ipv4">
<properties>
<help>Explicitly use IPv4 when tracing the path</help>
<completionHelp>
<list><hostname> <x.x.x.x></list>
</completionHelp>
</properties>
<command>/usr/bin/traceroute -4 "$3"</command>
</tagNode>
<tagNode name="ipv6">
<properties>
<help>Explicitly use IPv6 when tracing the path</help>
<completionHelp>
<list><hostname> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>/usr/bin/traceroute -6 "$3"</command>
</tagNode>
<tagNode name="vrf">
<properties>
<help>Track network path to specified node via given VRF</help>
<completionHelp>
<path>vrf name</path>
</completionHelp>
</properties>
<children>
<!-- we need an empty tagNode to pass in a plain fqdn/ip address and
let traceroute decide how to handle this parameter -->
<tagNode name="">
<properties>
<help>Track network path to specified node via given VRF</help>
<completionHelp>
<list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>sudo /usr/sbin/ip vrf exec "$3" /usr/bin/traceroute "$4"</command>
</tagNode>
<tagNode name="ipv4">
<properties>
<help>Explicitly use IPv4 when tracing the path via given VRF</help>
<completionHelp>
<list><hostname> <x.x.x.x></list>
</completionHelp>
</properties>
<command>sudo /usr/sbin/ip vrf exec "$3" /usr/bin/traceroute -4 "$5"</command>
</tagNode>
<tagNode name="ipv6">
<properties>
<help>Explicitly use IPv6 when tracing the path via given VRF</help>
<completionHelp>
<list><hostname> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>sudo /usr/sbin/ip vrf exec "$3" /usr/bin/traceroute -6 "$5"</command>
</tagNode>
</children>
</tagNode>
</children>
</node>
<node name="monitor">
<children>
<tagNode name="traceroute">
<properties>
<help>Monitor path to destination in realtime</help>
<completionHelp>
<list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>/usr/bin/mtr "$3"</command>
</tagNode>
<node name="traceroute">
<children>
<tagNode name="vrf">
<properties>
<help>Monitor path to destination in realtime via given VRF</help>
<completionHelp>
<path>vrf name</path>
</completionHelp>
</properties>
<children>
<!-- we need an empty tagNode to pass in a plain fqdn/ip address and
let traceroute decide how to handle this parameter -->
<tagNode name="">
<properties>
<help>Track network path to specified node via given VRF</help>
<completionHelp>
<list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>sudo /usr/sbin/ip vrf exec "$4" /usr/bin/mtr "$5"</command>
</tagNode>
</children>
</tagNode>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|