summaryrefslogtreecommitdiff
path: root/op-mode-definitions/nat.xml.in
blob: 13e7fd81d9326b41cba163a8d61cf8783beef460 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8"?>
<interfaceDefinition>
  <node name="show">
    <children>
      <node name="nat">
        <properties>
          <help>Show IPv4 Network Address Translation (NAT) information</help>
        </properties>
        <children>
          <node name="cgnat">
            <properties>
              <help>Show Carrier-Grade Network Address Translation (CGNAT)</help>
            </properties>
            <children>
              <node name="allocation">
                <properties>
                  <help>Show allocated CGNAT parameters</help>
                </properties>
                <children>
                  <tagNode name="external-address">
                    <properties>
                      <help>Show CGNAT allocations for an external IP address</help>
                      <completionHelp>
                        <list>&lt;x.x.x.x&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/cgnat.py show_allocation --external-address "$6"</command>
                  </tagNode>
                  <tagNode name="internal-address">
                    <properties>
                      <help>Show CGNAT allocations for an internal IP address</help>
                      <completionHelp>
                        <list>&lt;x.x.x.x&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/cgnat.py show_allocation --internal-address "$6"</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/cgnat.py show_allocation</command>
              </node>
            </children>
          </node>
          <node name="source">
            <properties>
              <help>Show source IPv4 to IPv4 Network Address Translation (NAT) information</help>
            </properties>
            <children>
              <node name="rules">
                <properties>
                  <help>Show configured source NAT rules</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/nat.py show_rules --direction source --family inet</command>
              </node>
              <node name="statistics">
                <properties>
                  <help>Show statistics for configured source NAT rules</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/nat.py show_statistics --direction source --family inet</command>
              </node>
              <node name="translations">
                <properties>
                  <help>Show active source NAT translations</help>
                </properties>
                <children>
                  <tagNode name="address">
                    <properties>
                      <help>Show active source NAT translations for an IP address</help>
                      <completionHelp>
                        <list>&lt;x.x.x.x&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/nat.py show_translations --direction source --family inet --address "$6"</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/nat.py show_translations --direction source --family inet</command>
              </node>
            </children>
          </node>
          <node name="destination">
            <properties>
              <help>Show destination IPv4 to IPv4 Network Address Translation (NAT) information</help>
            </properties>
            <children>
              <node name="rules">
                <properties>
                  <help>Show configured destination NAT rules</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/nat.py show_rules --direction destination --family inet</command>
              </node>
              <node name="statistics">
                <properties>
                  <help>Show statistics for configured destination NAT rules</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/nat.py show_statistics --direction destination --family inet</command>
              </node>
              <node name="translations">
                <properties>
                  <help>Show active destination NAT translations</help>
                </properties>
                <children>
                  <tagNode name="address">
                    <properties>
                      <help>Show active NAT destination translations for an IP address</help>
                      <completionHelp>
                        <list>&lt;x.x.x.x&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/nat.py show_translations --direction destination --family inet --address "$6"</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/nat.py show_translations --direction destination --family inet</command>
              </node>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>