summaryrefslogtreecommitdiff
path: root/op-mode-definitions/wireguard.xml.in
blob: 0df838b5007cb10e32844847dbadcbe0d470ca4e (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
<?xml version="1.0"?>
<!-- Wireguard key management -->
<interfaceDefinition>
  <node name="generate">
    <children>
      <node name="wireguard">
        <properties>
          <help>Generate Wireguard keys</help>
        </properties>
        <children>
          <leafNode name="default-keypair">
            <properties>
              <help>Generate the default Wireguard keypair</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/wireguard.py --genkey</command>
          </leafNode>
          <leafNode name="preshared-key">
            <properties>
              <help>Generate a Wireguard preshared key</help>
            </properties>
            <command>${vyos_op_scripts_dir}/wireguard.py --genpsk</command>
          </leafNode>
          <tagNode name="named-keypairs">
            <properties>
              <help>Generate specified Wireguard keypairs</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/wireguard.py --genkey --location "$4"</command>
          </tagNode>
          <tagNode name="client-config">
            <properties>
              <help>Generate Client config QR code</help>
              <completionHelp>
                <list>&lt;client-name&gt;</list>
              </completionHelp>
            </properties>
            <children>
              <tagNode name="interface">
                <properties>
                  <help>Local interface used for connection</help>
                  <completionHelp>
                    <script>${vyos_completion_dir}/list_interfaces.py --type wireguard</script>
                  </completionHelp>
                </properties>
                <children>
                  <tagNode name="server">
                    <properties>
                      <help>IP address/FQDN used for client connection</help>
                      <completionHelp>
                        <script>${vyos_completion_dir}/list_local_ips.sh --both</script>
                        <list>&lt;hostname&gt;</list>
                      </completionHelp>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --name "$4" --interface "$6" --server "$8"</command>
                    <children>
                      <tagNode name="address">
                        <properties>
                          <help>IPv4/IPv6 address used by client</help>
                          <completionHelp>
                            <list>&lt;x.x.x.x&gt; &lt;h:h:h:h:h:h:h:h&gt;</list>
                          </completionHelp>
                        </properties>
                        <command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --name "$4" --interface "$6" --server "$8" --address "${10}"</command>
                        <children>
                          <tagNode name="address">
                            <properties>
                              <help>IPv4/IPv6 address used by client</help>
                              <completionHelp>
                                <list>&lt;x.x.x.x&gt; &lt;h:h:h:h:h:h:h:h&gt;</list>
                              </completionHelp>
                            </properties>
                            <command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --name "$4" --interface "$6" --server "$8" --address "${10}" --address "${12}"</command>
                          </tagNode>
                        </children>
                      </tagNode>
                    </children>
                  </tagNode>
                </children>
              </tagNode>
            </children>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
  <node name="show">
    <children>
      <node name="wireguard">
        <properties>
          <help>Show Wireguard properties</help>
        </properties>
        <children>
          <node name="keypairs">
            <properties>
              <help>Show Wireguard keys</help>
            </properties>
            <children>
              <tagNode name="pubkey">
                <properties>
                  <help>Show specified Wireguard public key</help>
                  <completionHelp>
                    <script>${vyos_op_scripts_dir}/wireguard.py --listkdir</script>
                  </completionHelp>
                </properties>
                <command>${vyos_op_scripts_dir}/wireguard.py --showpub --location "$5"</command>
              </tagNode>
              <tagNode name="privkey">
                <properties>
                  <help>Show specified Wireguard private key</help>
                  <completionHelp>
                    <script>${vyos_op_scripts_dir}/wireguard.py --listkdir</script>
                  </completionHelp>
                </properties>
                <command>${vyos_op_scripts_dir}/wireguard.py --showpriv --location "$5"</command>
              </tagNode>
            </children>
          </node>
        </children>
      </node>
      <node name="interfaces">
        <children>
          <tagNode name="wireguard">
            <properties>
              <help>Show Wireguard interface information</help>
              <completionHelp>
                <script>${vyos_completion_dir}/list_interfaces.py --type wireguard</script>
              </completionHelp>
            </properties>
	        <command>sudo ${vyos_op_scripts_dir}/wireguard.py --showinterface "$4"</command>
            <children>
              <leafNode name="allowed-ips">
                <properties>
                  <help>Show all IP addresses allowed for the specified interface</help>
                </properties>
                <command>sudo wg show "$4" allowed-ips</command>
              </leafNode>
              <leafNode name="endpoints">
                <properties>
                  <help>Show all endpoints for the specified interface</help>
                </properties>
                <command>sudo wg show "$4" endpoints</command>
              </leafNode>
              <leafNode name="peers">
                <properties>
                  <help>Show all peer IDs for the specified interface</help>
                </properties>
                <command>sudo wg show "$4" peers</command>
              </leafNode>
             <!-- more commands upon request -->
            </children>
          </tagNode>
          <node name="wireguard">
            <properties>
              <help>Show Wireguard interface information</help>
            </properties>
            <command>${vyos_op_scripts_dir}/show_interfaces.py --intf-type=wireguard --action=show-brief</command>
            <children>
              <leafNode name="detail">
                <properties>
                  <help>Show detailed Wireguard interface information</help>
                </properties>
                <command>${vyos_op_scripts_dir}/show_interfaces.py --intf-type=wireguard --action=show</command>
              </leafNode>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="delete">
    <children>
      <node name="wireguard">
        <properties>
          <help>Delete Wireguard properties</help>
        </properties>
        <children>
          <tagNode name="keypair">
            <properties>
              <help>Delete a Wireguard keypair</help>
              <completionHelp>
                <script>${vyos_op_scripts_dir}/wireguard.py --listkdir</script>
              </completionHelp>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/wireguard.py --delkdir --location "$4"</command>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>