summaryrefslogtreecommitdiff
path: root/op-mode-definitions/dhcp.xml.in
blob: 1dacbd5baafa180a509f71fa35ba710f0ab0558b (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?xml version="1.0" encoding="UTF-8"?>
<interfaceDefinition>
  <node name="show">
    <children>
      <node name="dhcp">
        <properties>
          <help>Show DHCP (Dynamic Host Configuration Protocol) information</help>
        </properties>
        <children>
          <node name="server">
            <properties>
              <help>Show DHCP server information</help>
            </properties>
            <children>
              <node name="leases">
                <properties>
                  <help>Show DHCP server leases</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/show_dhcp.py --leases</command>
                <children>
                  <tagNode name="pool">
                    <properties>
                      <help>Show DHCP server leases for a specific pool</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcp.py --allowed pool</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcp.py --leases --pool $6</command>
                  </tagNode>
                  <tagNode name="sort">
                    <properties>
                      <help>Show DHCP server leases sorted by the specified key</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcp.py --allowed sort</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcp.py --leases --sort $6</command>
                  </tagNode>
                  <tagNode name="state">
                    <properties>
                      <help>Show DHCP server leases with a specific state (can be multiple, comma-separated)</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcp.py --allowed state</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcp.py --leases --state $(echo $6 | tr , " ")</command>
                  </tagNode>
                </children>
              </node>
              <node name="statistics">
                <properties>
                  <help>Show DHCP server statistics</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/show_dhcp.py --statistics</command>
                <children>
                  <tagNode name="pool">
                    <properties>
                      <help>Show DHCP server statistics for a specific pool</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcp.py --allowed pool</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcp.py --statistics --pool $6</command>
                  </tagNode>
                </children>
              </node>
            </children>
          </node>
        </children>
      </node>
      <node name="dhcpv6">
        <properties>
          <help>Show DHCPv6 (IPv6 Dynamic Host Configuration Protocol) information</help>
        </properties>
        <children>
          <node name="server">
            <properties>
              <help>Show DHCPv6 server information</help>
            </properties>
            <children>
              <node name="leases">
                <properties>
                  <help>Show DHCPv6 server leases</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --leases</command>
                <children>
                  <tagNode name="pool">
                    <properties>
                      <help>Show DHCPv6 server leases for a specific pool</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --allowed pool</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --leases --pool $6</command>
                  </tagNode>
                  <tagNode name="sort">
                    <properties>
                      <help>Show DHCPv6 server leases sorted by the specified key</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --allowed sort</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --leases --sort $6</command>
                  </tagNode>
                  <tagNode name="state">
                    <properties>
                      <help>Show DHCPv6 server leases with a specific state (can be multiple, comma-separated)</help>
                      <completionHelp>
                        <script>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --allowed state</script>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/show_dhcpv6.py --leases --state $(echo $6 | tr , " ")</command>
                  </tagNode>
                </children>
              </node>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="restart">
    <children>
      <node name="dhcp">
        <properties>
          <help>Restart DHCP server processes</help>
        </properties>
        <children>
          <node name="server">
            <properties>
              <help>Restart the DHCP server process</help>
            </properties>
            <command>sudo systemctl restart isc-dhcp-server.service</command>
          </node>
          <node name="relay-agent">
            <properties>
              <help>Restart the DHCP server process</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/restart_dhcp_relay.py --ipv4</command>
          </node>
        </children>
      </node>
      <node name="dhcpv6">
        <properties>
          <help>Restart DHCPv6 server processes</help>
        </properties>
        <children>
          <node name="server">
            <properties>
              <help>Restart the DHCPv6 server process</help>
            </properties>
            <command>sudo systemctl restart isc-dhcp-server6.service</command>
          </node>
          <node name="relay-agent">
            <properties>
              <help>Restart the DHCP server process</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/restart_dhcp_relay.py --ipv6</command>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="renew">
    <properties>
      <help>Renew specified variable</help>
    </properties>
    <children>
      <node name="dhcp">
        <properties>
          <help>Renew DHCP client lease</help>
        </properties>
        <children>
          <tagNode name="interface">
            <properties>
              <help>Renew DHCP client lease for specified interface</help>
              <completionHelp>
                <script>${vyos_completion_dir}/list_interfaces.py</script>
              </completionHelp>
            </properties>
            <command>sudo systemctl restart "dhclient@$4.service"</command>
          </tagNode>
        </children>
      </node>
      <node name="dhcpv6">
        <properties>
          <help>Renew DHCPv6 client lease</help>
        </properties>
        <children>
          <tagNode name="interface">
            <properties>
              <help>Renew DHCPv6 client lease for specified interface</help>
              <completionHelp>
                <script>${vyos_completion_dir}/list_interfaces.py</script>
              </completionHelp>
            </properties>
            <command>sudo systemctl restart "dhcp6c@$4.service"</command>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>