summaryrefslogtreecommitdiff
path: root/op-mode-definitions/generate-openconnect-user-key.xml.in
blob: 80cdfb3d79b82e31da35dcd3316da6249bf5d6a0 (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
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="generate">
    <children>
      <node name="openconnect">
        <properties>
          <help>Generate OpenConnect client parameters</help>
        </properties>
        <children>
          <tagNode name="username">
            <properties>
              <help>Username used for authentication</help>
              <completionHelp>
                <list>&lt;username&gt;</list>
              </completionHelp>
            </properties>
            <children>
              <node name="otp-key">
                <properties>
                  <help>Generate OpenConnect OTP token</help>
                </properties>
                <children>
                  <node name="hotp-time">
                    <properties>
                      <help>HOTP time-based token</help>
                    </properties>
                    <command>sudo ${vyos_op_scripts_dir}/generate_openconnect_otp_key.py --username "$4" --interval 30 --digits 6</command>
                    <children>
                      <tagNode name="interval">
                        <properties>
                          <help>Duration of single time interval</help>
                        </properties>
                        <command>sudo ${vyos_op_scripts_dir}/generate_openconnect_otp_key.py --username "$4" --interval "$8" --digits 6</command>
                        <children>
                          <tagNode name="digits">
                            <properties>
                              <help>The number of digits in the one-time password</help>
                            </properties>
                            <command>sudo ${vyos_op_scripts_dir}/generate_openconnect_otp_key.py --username "$4" --interval "$8" --digits "${10}"</command>
                          </tagNode>
                        </children>
                      </tagNode>
                      <tagNode name="digits">
                        <properties>
                          <help>The number of digits in the one-time password</help>
                        </properties>
                        <command>sudo ${vyos_op_scripts_dir}/generate_openconnect_otp_key.py --username "$4" --interval 30 --digits "$8"</command>
                        <children>
                          <tagNode name="interval">
                            <properties>
                              <help>Duration of single time interval</help>
                            </properties>
                            <command>sudo ${vyos_op_scripts_dir}/generate_openconnect_otp_key.py --username "$4" --interval "${10}" --digits $8</command>
                          </tagNode>
                        </children>
                      </tagNode>
                    </children>
                  </node>
                </children>
              </node>
            </children>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>