summaryrefslogtreecommitdiff
path: root/op-mode-definitions/wireguard.xml
blob: 3c54c81bda783c74e64a24947973cee5d5038fa4 (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
<?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="keypair">
            <properties>
              <help>generate a 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>Generates named wireguard keypairs</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/wireguard.py --genkey --location "$4"</command>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
  <node name="show">
    <children>
      <node name="wireguard">
        <properties>
          <help>Show wireguard properties</help>
        </properties>
        <children>
          <leafNode name="pubkey">
            <properties>
              <help>Show wireguard public key</help>
            </properties>
            <command>${vyos_op_scripts_dir}/wireguard.py --showpub</command>
          </leafNode>
          <leafNode name="privkey">
            <properties>
              <help>show wireguard private key</help>
            </properties>
            <command>${vyos_op_scripts_dir}/wireguard.py --showpriv</command>
          </leafNode>
          <node name="named-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 wg show "$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>
        </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>