in reply to How to check system's current NTP configuration on all OS?

Here's what I got on Mountain Lion:

[16:40][nick:~/monks]$ perl -v | head -2; perl -M5.010 -e "say '$^O: ' +, $^O;say;" This is perl 5, version 16, subversion 0 (v5.16.0) built for darwin-2l +evel $^O: darwin [16:40][nick:~/monks]$ perl 1136368.pl $VAR1 = { 'authdelay' => '0.000000s', 'broadcastdelay' => '0.000000s', 'jitter' => '0.000000s', 'leapindicator' => '11', 'precision' => '-20', 'referenceID' => '[73.78.73.84]', 'referencetime' => '00000000.00000000Sun,Dec31189916:00:00.0 +00', 'rootdispersion' => '1.54663s', 'rootdistance' => '0.00000s', 'stability' => '0.000ppm', 'stratum' => '16', 'systemflags' => 'authmonitorntpkernelstats', 'systempeer' => 'localhost', 'systempeermode' => 'unspec' };
The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^2: How to check system's current NTP configuration on all OS?
by thanos1983 (Parson) on Jul 26, 2015 at 23:52 UTC

    Hello 1nickt,

    That is perfect. Based on your output I can understand that you are using a MacOS based on from perlport darwin is (Mac OS X).

    Thank you for your time and effort, it is very important for me the compatibility with all OS.

    Seeking for Perl wisdom...on the process of learning...not there...yet!