blob: 17250a45e620067d108e5261138cfb54f01b787d (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="show">
<children>
<node name="ntp">
<properties>
<help>Show peer status of NTP daemon</help>
</properties>
<command>${vyos_op_scripts_dir}/ntp.py show_sourcestats</command>
<children>
<node name="activity">
<properties>
<help>Report the number of servers and peers that are online and offline</help>
</properties>
<command>${vyos_op_scripts_dir}/ntp.py show_activity</command>
</node>
<node name="sources">
<properties>
<help>Show information about the current time sources being accessed</help>
</properties>
<command>${vyos_op_scripts_dir}/ntp.py show_sources</command>
</node>
<node name="system">
<properties>
<help>Show parameters about the system clock performance</help>
</properties>
<command>${vyos_op_scripts_dir}/ntp.py show_tracking</command>
</node>
</children>
</node>
</children>
</node>
<node name="force">
<children>
<node name="ntp">
<properties>
<help>NTP (Network Time Protocol) operations</help>
</properties>
<children>
<node name="synchronization">
<properties>
<help>Force NTP time synchronization</help>
</properties>
<children>
<tagNode name="vrf">
<properties>
<help>Force NTP time synchronization in given VRF</help>
<completionHelp>
<path>vrf name</path>
</completionHelp>
</properties>
<command>sudo ip vrf exec $5 chronyc makestep</command>
</tagNode>
</children>
<command>sudo chronyc makestep</command>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|