summaryrefslogtreecommitdiff
path: root/op-mode-definitions/pki.xml.in
blob: 0cea3db08439ccd47ddd12edaa130ed3d50e4cf2 (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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="generate">
    <children>
      <node name="pki">
        <properties>
          <help>Generate PKI certificates and keys</help>
        </properties>
        <children>
          <node name="ca">
            <properties>
              <help>Generate CA certificate</help>
            </properties>
            <children>
              <tagNode name="install">
                <properties>
                  <help>Commands for installing generated certificate into running configuration</help>
                  <completionHelp>
                    <list>&lt;CA name&gt;</list>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --ca "$5" --install</command>
              </tagNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --ca "noname"</command>
          </node>
          <node name="certificate">
            <properties>
              <help>Generate certificate request</help>
            </properties>
            <children>
              <node name="self-signed">
                <properties>
                  <help>Generate self-signed certificate</help>
                </properties>
                <children>
                  <tagNode name="install">
                    <properties>
                      <help>Commands for installing generated self-signed certificate into running configuration</help>
                      <completionHelp>
                        <list>&lt;certificate name&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --certificate "$6" --self-sign --install</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --certificate "noname" --self-sign</command>
              </node>
              <tagNode name="sign">
                <properties>
                  <help>Sign generated certificate with specified CA certificate</help>
                  <completionHelp>
                    <path>pki ca</path>
                  </completionHelp>
                </properties>
                <children>
                  <tagNode name="install">
                    <properties>
                      <help>Commands for installing generated certificate into running configuration</help>
                      <completionHelp>
                        <list>&lt;certificate name&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --certificate "$7" --sign "$5" --install</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --certificate "noname" --sign "$5"</command>
              </tagNode>
              <tagNode name="install">
                <properties>
                  <help>Commands for installing generated certificate private key into running configuration</help>
                  <completionHelp>
                    <list>&lt;certificate name&gt;</list>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --certificate "$5" --install</command>
              </tagNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --certificate "noname"</command>
          </node>
          <tagNode name="crl">
            <properties>
              <help>Generate CRL for specified CA certificate</help>
              <completionHelp>
                <path>pki ca</path>
              </completionHelp>
            </properties>
            <children>
              <leafNode name="install">
                <properties>
                  <help>Commands for installing generated CRL into running configuration</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --crl "$4" --install</command>
              </leafNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --crl "$4"</command>
          </tagNode>
          <node name="dh">
            <properties>
              <help>Generate DH parameters</help>
            </properties>
            <children>
              <tagNode name="install">
                <properties>
                  <help>Commands for installing generated DH parameters into running configuration</help>
                  <completionHelp>
                    <list>&lt;DH name&gt;</list>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --dh "$5" --install</command>
              </tagNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --dh "noname"</command>
          </node>
          <node name="key-pair">
            <properties>
              <help>Generate a key pair</help>
            </properties>
            <children>
              <tagNode name="install">
                <properties>
                  <help>Commands for installing generated key pair into running configuration</help>
                  <completionHelp>
                    <list>&lt;key name&gt;</list>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --keypair "$5" --install</command>
              </tagNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --keypair "noname"</command>
          </node>
          <node name="openvpn">
            <properties>
              <help>Generate OpenVPN keys</help>
            </properties>
            <children>
              <node name="tls-auth">
                <properties>
                  <help>Generate OpenVPN TLS key</help>
                </properties>
                <children>
                  <tagNode name="install">
                    <properties>
                      <help>Commands for installing generated OpenVPN TLS key into running configuration</help>
                      <completionHelp>
                        <list>&lt;key name&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --openvpn "$6" --install</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --openvpn "noname"</command>
              </node>
            </children>
          </node>
          <node name="ssh-key">
            <properties>
              <help>Generate SSH key</help>
            </properties>
            <children>
              <tagNode name="install">
                <properties>
                  <help>Commands for installing generated SSH key into running configuration</help>
                  <completionHelp>
                    <list>&lt;key name&gt;</list>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --ssh "$5" --install</command>
              </tagNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --ssh "noname"</command>
          </node>
          <node name="wireguard">
            <properties>
              <help>Generate Wireguard keys</help>
            </properties>
            <children>
              <node name="key-pair">
                <properties>
                  <help>Generate Wireguard key pair for use with server or peer</help>
                </properties>
                <children>
                  <tagNode name="install">
                    <properties>
                      <help>Commands for installing generated Wireguard key into running configuration</help>
                      <completionHelp>
                        <list>&lt;interface&gt; &lt;peer&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --wireguard --key "$6" --install</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --wireguard --key "noname"</command>
              </node>
              <node name="pre-shared-key">
                <properties>
                  <help>Generate pre-shared key for use with a Wireguard peer</help>
                </properties>
                <children>
                  <tagNode name="install">
                    <properties>
                      <help>Commands for installing generated Wireguard psk on specified peer into running configuration</help>
                      <completionHelp>
                        <list>&lt;peer&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --wireguard --psk "$6" --install</command>
                  </tagNode>
                </children>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action generate --wireguard --psk "noname"</command>
              </node>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="show">
    <children>
      <node name="pki">
        <properties>
          <help>Show PKI certificates</help>
        </properties>
        <children>
          <node name="ca">
            <properties>
              <help>Show CA certificates</help>
            </properties>
            <children>
              <leafNode name="name">
                <properties>
                  <help>Show CA certificate by name</help>
                  <completionHelp>
                    <path>pki ca</path>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action show --ca "$5"</command>
              </leafNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action show --ca "all"</command>
          </node>
          <node name="certificate">
            <properties>
              <help>Show certificates</help>
            </properties>
            <children>
              <leafNode name="name">
                <properties>
                  <help>Show certificate by name</help>
                  <completionHelp>
                    <path>pki certificate</path>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action show --certificate "$5"</command>
              </leafNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action show --certificate "all"</command>
          </node>
          <node name="crl">
            <properties>
              <help>Show certificate revocation lists</help>
            </properties>
            <children>
              <leafNode name="name">
                <properties>
                  <help>Show certificate revocation lists from specified CA</help>
                  <completionHelp>
                    <path>pki ca</path>
                  </completionHelp>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/pki.py --action show --crl "$5"</command>
              </leafNode>
            </children>
            <command>sudo ${vyos_op_scripts_dir}/pki.py --action show --crl "all"</command>
          </node>
        </children>
        <command>sudo ${vyos_op_scripts_dir}/pki.py --action show</command>
      </node>
    </children>
  </node>
</interfaceDefinition>