[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ntp
On Tue, 31 Aug 1999 charles@lunarmedia.net wrote:
> anyone have a doc on setting up ntp on linux? or where to get the
> binaries?
http://www.eecis.udel.edu/~ntp
home of xntpd (looks like it's now ntpd?). Download it, compile and install
it (I've never had a problem compiling it), get confused by the directions
and the tremendous amount fo detail it goes into, and then just set up a
simple /etc/ntp.conf file like this one. You can do neat-o things like
authentication and stuff if you wanna read the docs. Essentially, you make
one machine a server for the rest of your network by syncing it with some
off-site ntp servers, such as ntp-(0,1,2).cso.uiuc.edu,
(gilbreth,harbor,molecule).ecn.purdue.edu, or anything else off of the list
linked by that page - then set all the other machines you maintain to use
your one (or 2) master(s) as their only server(s).
--Danny
--------
#/etc/ntp.conf
server 127.0.0.1 #local clock
fudge 127.0.0.1 stratum 10 #pretend local is real server :)
# stick your servers in here just like this - there can be more than 1...
server 192.168.0.3 #internal adress of time.cloudmaster.com
driftfile /etc/ntp.drift #typical drift file name
logfile /var/log/ntp #keep track of pointless logs
# end /etc/ntp.conf
--
To unsubscribe, send email to majordomo@luci.org with
"unsubscribe luci-discuss" in the body.
- References:
- ntp
- From: charles@lunarmedia.net