blob: 6a8a39000c18a7db6120124f0559b83e6d0aa2a4 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interfaceDefinition>
<node name="show">
<children>
<node name="nat66">
<properties>
<help>Show 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}/nat.py show_rules --direction source --family inet6</command>
</node>
<node name="statistics">
<properties>
<help>Show statistics for configured source NAT66 rules</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/nat.py show_statistics --direction source --family inet6</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>sudo ${vyos_op_scripts_dir}/nat.py show_translations --direction source --family inet6 --address "$6"</command>
</tagNode>
</children>
<command>${vyos_op_scripts_dir}/nat.py show_translations --direction source --family inet6</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}/nat.py show_rules --direction destination --family inet6</command>
</node>
<node name="statistics">
<properties>
<help>Show statistics for configured destination NAT66 rules</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/nat.py show_statistics --direction destination --family inet6</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>sudo ${vyos_op_scripts_dir}/nat.py show_translations --direction destination --family inet6 --address "$6"</command>
</tagNode>
</children>
<command>${vyos_op_scripts_dir}/nat.py show_translations --direction destination --family inet6</command>
</node>
</children>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|