blob: 85f6047c1674377a9ba0bb97074b7a7b992c2af5 (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="traceroute">
<properties>
<help>Track network path to node</help>
</properties>
<children>
<tagNode name="">
<properties>
<help>Track network path to specified 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>
<tagNode name="ipv4">
<properties>
<help>Track network path to <hostname|IPv4 address></help>
<completionHelp>
<list><hostname> <x.x.x.x></list>
</completionHelp>
</properties>
<command>/usr/bin/traceroute -4 $3</command>
</tagNode>
<tagNode name="ipv6">
<properties>
<help>Track network path to <hostname|IPv6 address></help>
<completionHelp>
<list><hostname> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>/usr/bin/traceroute -6 $3</command>
</tagNode>
</children>
</node>
<node name="monitor">
<children>
<tagNode name="traceroute">
<properties>
<help>Monitor the path to a 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>
</children>
</node>
</interfaceDefinition>
|