summaryrefslogtreecommitdiff
path: root/op-mode-definitions/wireguard.xml.in
blob: 9cc979b7b1545701a12611cf05bccce8a410e3f5 (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
<?xml version="1.0"?>
<!-- wireguard key management -->
<interfaceDefinition>
  <node name="generate">
    <children>
      <node name="wireguard">
        <properties>
          <help>wireguard key generation utility</help>
        </properties>
        <children>
          <leafNode name="default-keypair">
            <properties>
              <help>generates the wireguard default-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>Generates named wireguard keypairs</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/wireguard.py --genkey --location "$4"</command>
          </tagNode>
          <tagNode name="mobile-config">
            <properties>
              <help>Generate QR code and movile configuration for Wireguard interface</help>
              <completionHelp>
                <script>${vyos_completion_dir}/list_interfaces.py --type wireguard</script>
              </completionHelp>
            </properties>
            <children>
              <tagNode name="server">
                <properties>
                  <help>IP address or FQDN the client will connect to</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 --interface "$4" --server "$6"</command>
                <children>
                  <tagNode name="address">
                    <properties>
                      <help>IPv4/IPv6 address used on the client side</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 --interface "$4" --server "$6" --address "$8"</command>
                  </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>Shows named wireguard keys</help>
            </properties>
            <children>
              <tagNode name="pubkey">
                <properties>
                  <help>Show wireguard private named 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 wireguard public named 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 allowed-ips 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>