320 lines
7.4 KiB
Plaintext
320 lines
7.4 KiB
Plaintext
(*
|
|
Module: Test_Chrony
|
|
Provides unit tests and examples for the <Chrony> lens.
|
|
*)
|
|
|
|
module Test_Chrony =
|
|
|
|
let exampleconf = "# Comment
|
|
#Comment
|
|
! Comment
|
|
!Comment
|
|
; Comment
|
|
;Comment
|
|
% Comment
|
|
%Comment
|
|
|
|
server ntp1.example.com
|
|
server ntp2.example.com iburst
|
|
server ntp3.example.com presend 2
|
|
server ntp4.example.com offline polltarget 4
|
|
server ntp5.example.com maxdelay 2 offline
|
|
server ntp6.example.com maxdelay 2 iburst presend 2 xleave offset 1e-4
|
|
server ntp7.example.com iburst presend 2 offline prefer trust require
|
|
server ntp8.example.com minsamples 8 maxsamples 16 version 3
|
|
server ntp9.example.com burst mindelay 0.1 asymmetry 0.5 nts filter 3
|
|
peer ntpc1.example.com
|
|
pool pool1.example.com iburst maxsources 3
|
|
allow
|
|
deny all
|
|
cmdallow 192.168.1.0/24
|
|
cmddeny all 192.168.2.0/24
|
|
stratumweight 0
|
|
driftfile /var/lib/chrony/drift
|
|
rtcsync
|
|
makestep 10 -1
|
|
bindcmdaddress 127.0.0.1
|
|
bindcmdaddress ::1
|
|
bindacqdevice eth0
|
|
bindcmddevice eth0
|
|
binddevice eth0
|
|
clockprecision 10e-9
|
|
local
|
|
local stratum 10
|
|
local distance 1.0 orphan
|
|
keyfile /etc/chrony.keys
|
|
commandkey 1
|
|
generatecommandkey
|
|
manual
|
|
noclientlog
|
|
logchange 0.5
|
|
logdir /var/log/chrony
|
|
log rtc measurements rawmeasurements statistics tracking refclocks tempcomp
|
|
leapsectz right/UTC
|
|
broadcast 10 192.168.1.255
|
|
broadcast 10 192.168.100.255 123
|
|
fallbackdrift 16 19
|
|
mailonchange root@localhost 0.5
|
|
maxchange 1000 1 2
|
|
maxdistance 1.0
|
|
maxdrift 100
|
|
hwtimestamp eth0 minpoll -2 txcomp 300e-9 rxcomp 645e-9 nocrossts rxfilter all
|
|
hwtimestamp eth1 minsamples 10 maxsamples 20
|
|
initstepslew 30 foo.bar.com
|
|
initstepslew 30 foo.bar.com baz.quz.com
|
|
ratelimit interval 4 burst 16 leak 2
|
|
cmdratelimit
|
|
ntsratelimit
|
|
refclock SHM 0 refid SHM0 delay 0.1 offset 0.2 noselect tai stratum 3
|
|
refclock SOCK /var/run/chrony-GPS.sock pps width 0.1
|
|
refclock PPS /dev/pps0 dpoll 2 poll 3 lock SHM0 rate 5 minsamples 8
|
|
smoothtime 400 0.001 leaponly
|
|
tempcomp /sys/class/hwmon/hwmon0/temp2_input 30 26000 0.0 0.000183 0.0
|
|
tempcomp /sys/class/hwmon/hwmon0/temp2_input 30 /etc/chrony.tempcomp
|
|
ntpsigndsocket /var/lib/samba/ntp_signd
|
|
confdir /etc/chrony.d /usr/lib/chrony.d
|
|
sourcedir /etc/chrony.d /var/run/chrony.d
|
|
authselectmode require
|
|
dscp 46
|
|
maxntsconnections 10
|
|
nocerttimecheck 1
|
|
nosystemcert
|
|
ntsservercert /etc/chrony/server.crt
|
|
ntsserverkey /etc/chrony/server.key
|
|
ntstrustedcerts /etc/chrony/trusted.crt
|
|
ntsdumpdir /var/lib/chrony
|
|
ntsntpserver foo.example.com
|
|
ntsport 123
|
|
ntsprocesses 2
|
|
ntsrefresh 86400
|
|
ntsrotate 86400
|
|
"
|
|
|
|
test Chrony.lns get exampleconf =
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ "#comment" = "Comment" }
|
|
{ }
|
|
{ "server" = "ntp1.example.com" }
|
|
{ "server" = "ntp2.example.com"
|
|
{ "iburst" }
|
|
}
|
|
{ "server" = "ntp3.example.com"
|
|
{ "presend" = "2" }
|
|
}
|
|
{ "server" = "ntp4.example.com"
|
|
{ "offline" }
|
|
{ "polltarget" = "4" }
|
|
}
|
|
{ "server" = "ntp5.example.com"
|
|
{ "maxdelay" = "2" }
|
|
{ "offline" }
|
|
}
|
|
{ "server" = "ntp6.example.com"
|
|
{ "maxdelay" = "2" }
|
|
{ "iburst" }
|
|
{ "presend" = "2" }
|
|
{ "xleave" }
|
|
{ "offset" = "1e-4" }
|
|
}
|
|
{ "server" = "ntp7.example.com"
|
|
{ "iburst" }
|
|
{ "presend" = "2" }
|
|
{ "offline" }
|
|
{ "prefer" }
|
|
{ "trust" }
|
|
{ "require" }
|
|
}
|
|
{ "server" = "ntp8.example.com"
|
|
{ "minsamples" = "8" }
|
|
{ "maxsamples" = "16" }
|
|
{ "version" = "3" }
|
|
}
|
|
{ "server" = "ntp9.example.com"
|
|
{ "burst" }
|
|
{ "mindelay" = "0.1" }
|
|
{ "asymmetry" = "0.5" }
|
|
{ "nts" }
|
|
{ "filter" = "3" }
|
|
}
|
|
{ "peer" = "ntpc1.example.com" }
|
|
{ "pool" = "pool1.example.com"
|
|
{ "iburst" }
|
|
{ "maxsources" = "3" }
|
|
}
|
|
{ "allow" }
|
|
{ "deny"
|
|
{ "all" }
|
|
}
|
|
{ "cmdallow" = "192.168.1.0/24" }
|
|
{ "cmddeny" = "192.168.2.0/24"
|
|
{ "all" }
|
|
}
|
|
{ "stratumweight" = "0" }
|
|
{ "driftfile" = "/var/lib/chrony/drift" }
|
|
{ "rtcsync" }
|
|
{ "makestep"
|
|
{ "threshold" = "10" }
|
|
{ "limit" = "-1" }
|
|
}
|
|
{ "bindcmdaddress" = "127.0.0.1" }
|
|
{ "bindcmdaddress" = "::1" }
|
|
{ "bindacqdevice" = "eth0" }
|
|
{ "bindcmddevice" = "eth0" }
|
|
{ "binddevice" = "eth0" }
|
|
{ "clockprecision" = "10e-9" }
|
|
{ "local" }
|
|
{ "local"
|
|
{ "stratum" = "10" }
|
|
}
|
|
{ "local"
|
|
{ "distance" = "1.0" }
|
|
{ "orphan" }
|
|
}
|
|
{ "keyfile" = "/etc/chrony.keys" }
|
|
{ "commandkey" = "1" }
|
|
{ "generatecommandkey" }
|
|
{ "manual" }
|
|
{ "noclientlog" }
|
|
{ "logchange" = "0.5" }
|
|
{ "logdir" = "/var/log/chrony" }
|
|
{ "log"
|
|
{ "rtc" }
|
|
{ "measurements" }
|
|
{ "rawmeasurements" }
|
|
{ "statistics" }
|
|
{ "tracking" }
|
|
{ "refclocks" }
|
|
{ "tempcomp" }
|
|
}
|
|
{ "leapsectz" = "right/UTC" }
|
|
{ "broadcast"
|
|
{ "interval" = "10" }
|
|
{ "address" = "192.168.1.255" }
|
|
}
|
|
{ "broadcast"
|
|
{ "interval" = "10" }
|
|
{ "address" = "192.168.100.255" }
|
|
{ "port" = "123" }
|
|
}
|
|
{ "fallbackdrift"
|
|
{ "min" = "16" }
|
|
{ "max" = "19" }
|
|
}
|
|
{ "mailonchange"
|
|
{ "emailaddress" = "root@localhost" }
|
|
{ "threshold" = "0.5" }
|
|
}
|
|
{ "maxchange"
|
|
{ "threshold" = "1000" }
|
|
{ "delay" = "1" }
|
|
{ "limit" = "2" }
|
|
}
|
|
{ "maxdistance" = "1.0" }
|
|
{ "maxdrift" = "100" }
|
|
{ "hwtimestamp"
|
|
{ "interface" = "eth0" }
|
|
{ "minpoll" = "-2" }
|
|
{ "txcomp" = "300e-9" }
|
|
{ "rxcomp" = "645e-9" }
|
|
{ "nocrossts" }
|
|
{ "rxfilter" = "all" }
|
|
}
|
|
{ "hwtimestamp"
|
|
{ "interface" = "eth1" }
|
|
{ "minsamples" = "10" }
|
|
{ "maxsamples" = "20" }
|
|
}
|
|
{ "initstepslew"
|
|
{ "threshold" = "30" }
|
|
{ "address" = "foo.bar.com" }
|
|
}
|
|
{ "initstepslew"
|
|
{ "threshold" = "30" }
|
|
{ "address" = "foo.bar.com" }
|
|
{ "address" = "baz.quz.com" }
|
|
}
|
|
{ "ratelimit"
|
|
{ "interval" = "4" }
|
|
{ "burst" = "16" }
|
|
{ "leak" = "2" }
|
|
}
|
|
{ "cmdratelimit" }
|
|
{ "ntsratelimit" }
|
|
{ "refclock"
|
|
{ "driver" = "SHM" }
|
|
{ "parameter" = "0" }
|
|
{ "refid" = "SHM0" }
|
|
{ "delay" = "0.1" }
|
|
{ "offset" = "0.2" }
|
|
{ "noselect" }
|
|
{ "tai" }
|
|
{ "stratum" = "3" }
|
|
}
|
|
{ "refclock"
|
|
{ "driver" = "SOCK" }
|
|
{ "parameter" = "/var/run/chrony-GPS.sock" }
|
|
{ "pps" }
|
|
{ "width" = "0.1" }
|
|
}
|
|
{ "refclock"
|
|
{ "driver" = "PPS" }
|
|
{ "parameter" = "/dev/pps0" }
|
|
{ "dpoll" = "2" }
|
|
{ "poll" = "3" }
|
|
{ "lock" = "SHM0" }
|
|
{ "rate" = "5" }
|
|
{ "minsamples" = "8" }
|
|
}
|
|
{ "smoothtime"
|
|
{ "maxfreq" = "400" }
|
|
{ "maxwander" = "0.001" }
|
|
{ "leaponly" }
|
|
}
|
|
{ "tempcomp"
|
|
{ "sensorfile" = "/sys/class/hwmon/hwmon0/temp2_input" }
|
|
{ "interval" = "30" }
|
|
{ "t0" = "26000" }
|
|
{ "k0" = "0.0" }
|
|
{ "k1" = "0.000183" }
|
|
{ "k2" = "0.0" }
|
|
}
|
|
{ "tempcomp"
|
|
{ "sensorfile" = "/sys/class/hwmon/hwmon0/temp2_input" }
|
|
{ "interval" = "30" }
|
|
{ "pointfile" = "/etc/chrony.tempcomp" }
|
|
}
|
|
{ "ntpsigndsocket" = "/var/lib/samba/ntp_signd" }
|
|
{ "confdir"
|
|
{ "directory" = "/etc/chrony.d" }
|
|
{ "directory" = "/usr/lib/chrony.d" }
|
|
}
|
|
{ "sourcedir"
|
|
{ "directory" = "/etc/chrony.d" }
|
|
{ "directory" = "/var/run/chrony.d" }
|
|
}
|
|
{ "authselectmode" = "require" }
|
|
{ "dscp" = "46" }
|
|
{ "maxntsconnections" = "10" }
|
|
{ "nocerttimecheck" = "1" }
|
|
{ "nosystemcert" }
|
|
{ "ntsservercert" = "/etc/chrony/server.crt" }
|
|
{ "ntsserverkey" = "/etc/chrony/server.key" }
|
|
{ "ntstrustedcerts" = "/etc/chrony/trusted.crt" }
|
|
{ "ntsdumpdir" = "/var/lib/chrony" }
|
|
{ "ntsntpserver" = "foo.example.com" }
|
|
{ "ntsport" = "123" }
|
|
{ "ntsprocesses" = "2" }
|
|
{ "ntsrefresh" = "86400" }
|
|
{ "ntsrotate" = "86400" }
|
|
|
|
|
|
(* Local Variables: *)
|
|
(* mode: caml *)
|
|
(* End: *)
|