blob: be53f866b0321ba8ab0aebe56ed64f0363400cfd (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="monitor">
<children>
<node name="traffic">
<properties>
<help>Monitor traffic dumps</help>
</properties>
<children>
<tagNode name="interface">
<command>tcpdump -i $4</command>
<properties>
<help>Monitor traffic dump from an interface</help>
<completionHelp>
<script>${vyos_bindir}/vyos-list-dumpable-interfaces.py</script>
</completionHelp>
</properties>
<children>
<tagNode name="filter">
<command>tcpdump -n -i $4 $6</command>
<properties>
<help>Monitor traffic matching filter conditions</help>
</properties>
</tagNode>
<tagNode name="save">
<command>tcpdump -n -i $4 -w $6</command>
<properties>
<help>Save traffic dump from an interface to a file</help>
</properties>
<children>
<tagNode name="filter">
<command>tcpdump -n -i $4 -w $6 $8</command>
<properties>
<help>Save a dump of traffic matching filter conditions to a file</help>
</properties>
</tagNode>
</children>
</tagNode>
</children>
</tagNode>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|