summaryrefslogtreecommitdiff
path: root/op-mode-definitions/dynamic-dns.xml
blob: 6ea6482e1ac598ec9d649f48b7ddd10d785e4d4f (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
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="show">
    <children>
      <node name="dns">
        <properties>
          <help>Show DNS information</help>
        </properties>
        <children>
          <node name="dynamic">
            <properties>
              <help>Show Dynamic DNS information</help>
            </properties>
            <children>
              <leafNode name="status">
                <properties>
                  <help>Show Dynamic DNS status</help>
                </properties>
                <command>sudo ${vyos_op_scripts_dir}/dynamic_dns.py --status</command>
              </leafNode>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
  <node name="update">
    <properties>
      <help>Update data for a service</help>
    </properties>
    <children>
      <node name="dns">
        <properties>
          <help>Update DNS information</help>
        </properties>
        <children>
          <node name="dynamic">
            <properties>
              <help>Update Dynamic DNS information</help>
            </properties>
            <command>sudo ${vyos_op_scripts_dir}/dynamic_dns.py --update</command>
          </node>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>