Posts tagged ‘NTP’

Various Time Scripts

To see the offset for a range of system

for X in `cat YourList.txt`
do
Y=`ssh $X -l root 'ntpdate -q 10.168.XX.XX' | awk -F, '{print $3}'`
echo $X $Y
done

Continue reading ‘Various Time Scripts’ »

NTP Client Setup

This document serves two purposes. The first is to document the setup of an NTP client (not an NTP server.) The second is to allow other to see how to monitor NTP.

Enable syncing with upstream servers from your NTP source. These settings are set in /etc/ntp.conf

# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
# Limiting to three servers as requested by pool.ntp.org
server myTIME01.domain.com
server myTIME02.domain.com

Continue reading ‘NTP Client Setup’ »