blob: 79478f392bf07ec68061a2011a2d8035e8853f78 (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="clear">
<children>
<node name="dns">
<properties>
<help>Clear Domain Name System</help>
</properties>
<children>
<node name="dynamic">
<properties>
<help>Clear Dynamic DNS information</help>
</properties>
<children>
<leafNode name="cache">
<properties>
<help>Clear Dynamic DNS information cache (ddclient)</help>
</properties>
<command>sudo rm -f /run/ddclient/ddclient.cache</command>
</leafNode>
</children>
</node>
</children>
</node>
</children>
</node>
<node name="monitor">
<children>
<node name="log">
<children>
<node name="dns">
<properties>
<help>Monitor last lines of Domain Name System related services</help>
</properties>
<children>
<node name="dynamic">
<properties>
<help>Monitor last lines of Dynamic DNS update service</help>
</properties>
<command>journalctl --no-hostname --follow --boot --unit ddclient.service</command>
</node>
</children>
</node>
</children>
</node>
</children>
</node>
<node name="show">
<children>
<node name="log">
<children>
<node name="dns">
<properties>
<help>Show log for Domain Name System related services</help>
</properties>
<children>
<node name="dynamic">
<properties>
<help>Show log for Dynamic DNS update service</help>
</properties>
<command>journalctl --no-hostname --boot --unit ddclient.service</command>
</node>
</children>
</node>
</children>
</node>
<node name="dns">
<properties>
<help>Show Domain Name System related 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}/dns_dynamic.py --status</command>
</leafNode>
</children>
</node>
</children>
</node>
</children>
</node>
<node name="restart">
<children>
<node name="dns">
<properties>
<help>Restart specific Domain Name System related service</help>
</properties>
<children>
<node name="dynamic">
<properties>
<help>Restart Dynamic DNS service</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/dns_dynamic.py --update</command>
</node>
</children>
</node>
</children>
</node>
<node name="update">
<properties>
<help>Update data for a service</help>
</properties>
<children>
<node name="dns">
<properties>
<help>Update Domain Name System related information</help>
</properties>
<children>
<node name="dynamic">
<properties>
<help>Update Dynamic DNS information</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/dns_dynamic.py --update</command>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|