blob: 1ec46eb119776ffd19621e1965dee7e6abc6fb29 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interfaceDefinition>
<node name="show">
<children>
<node name="nat66">
<properties>
<help>Show IPv6 to IPv6 Network Address Translation (NAT66) information</help>
</properties>
<children>
<node name="source">
<properties>
<help>Show source IPv6 to IPv6 Network Address Translation (NAT66) information</help>
</properties>
<children>
<node name="rules">
<properties>
<help>Show configured source NAT66 rules</help>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_rules.py --source</command>
</node>
<node name="statistics">
<properties>
<help>Show statistics for configured source NAT66 rules</help>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_statistics.py --source</command>
</node>
<node name="translations">
<properties>
<help>Show active source NAT66 translations</help>
</properties>
<children>
<tagNode name="address">
<properties>
<help>Show active source NAT66 translations for an IPv6 address</help>
<completionHelp>
<list><h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_translations.py --type=source --verbose --ipaddr="$6"</command>
</tagNode>
<node name="detail">
<properties>
<help>Show active source NAT66 translations detail</help>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_translations.py --type=source --verbose</command>
</node>
</children>
<command>${vyos_op_scripts_dir}/show_nat66_translations.py --type=source</command>
</node>
</children>
</node>
<node name="destination">
<properties>
<help>Show destination IPv6 to IPv6 Network Address Translation (NAT66) information</help>
</properties>
<children>
<node name="rules">
<properties>
<help>Show configured destination NAT66 rules</help>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_rules.py --destination</command>
</node>
<node name="statistics">
<properties>
<help>Show statistics for configured destination NAT66 rules</help>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_statistics.py --destination</command>
</node>
<node name="translations">
<properties>
<help>Show active destination NAT66 translations</help>
</properties>
<children>
<tagNode name="address">
<properties>
<help>Show active NAT66 destination translations for an IPv6 address</help>
<completionHelp>
<list><h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_translations.py --type=destination --verbose --ipaddr="$6"</command>
</tagNode>
<node name="detail">
<properties>
<help>Show active destination NAT66 translations detail</help>
</properties>
<command>${vyos_op_scripts_dir}/show_nat66_translations.py --type=destination --verbose</command>
</node>
</children>
<command>${vyos_op_scripts_dir}/show_nat66_translations.py --type=destination</command>
</node>
</children>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|