blob: 90e860e2dddedf577c64c4f2bb838629f0f004dc (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="show">
<children>
<node name="vpp">
<children>
<node name="ipfix">
<properties>
<help>Show VPP IPFIX information</help>
</properties>
<children>
<node name="collectors">
<properties>
<help>Show IPFIX collectors</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/vpp.py show_ipfix_collectors</command>
</node>
<node name="interfaces">
<properties>
<help>Show IPFIX interfaces</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/vpp.py show_ipfix_interfaces</command>
</node>
<node name="table">
<properties>
<help>Show IPFIX table</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/vpp.py show_ipfix_table</command>
</node>
</children>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|