summaryrefslogtreecommitdiff
path: root/op-mode-definitions/wireguard.xml
blob: ec4c02b3a6bcb49bd9f6e393050bce0a3722cc26 (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
<?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>${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_key.py --genpsk</command>
          </leafNode> 
        </children>
      </node>
    </children>
  </node>
  <node name="show">
    <children>
      <node name="wireguard">
        <children>
          <leafNode name="pubkey">
            <properties>
              <help>show wireguard public key</help>
            </properties>
            <command>${vyos_op_scripts_dir}/wireguard_key.py --showpub</command>
          </leafNode>
          <leafNode name="privkey">
            <properties>
              <help>show wireguard private key</help>
            </properties>
            <command>${vyos_op_scripts_dir}/wireguard_key.py --showpriv</command>
          </leafNode>
          <leafNode name="preshared-key">
            <properties>
              <help>show wireguard preshared key</help>
            </properties>
            <command>${vyos_op_scripts_dir}/wireguard_key.py --showpsk</command>
          </leafNode>
        </children>
      </node>
      <node name="interfaces">
        <children>
          <tagNode name="wireguard">
            <properties>
              <help>show wireguard interface information</help>
              <completionHelp>
                <script>${vyos_completion_dir}/list_interfaces.py -t 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>
</interfaceDefinition>