diff --git a/op-mode-definitions/ntp.xml.in b/op-mode-definitions/ntp.xml.in index ca0e5db08..b8d0c43ec 100644 --- a/op-mode-definitions/ntp.xml.in +++ b/op-mode-definitions/ntp.xml.in @@ -1,38 +1,49 @@ <?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}/show_ntp.sh --sourcestats</command> <children> <node name="system"> <properties> <help>Show parameters about the system clock performance</help> </properties> <command>${vyos_op_scripts_dir}/show_ntp.sh --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>