Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CMS and NTP 2

Status
Not open for further replies.

telcomwork

Technical User
Mar 2, 2002
1,625
US
Does anyone have the steps to setting up NTP on a CMS R13 running 5.9?

I see some reference to xntp.conf file or ntp.conf but I don't see either of those in /etc/inet or how to configure.

Many thanks!
 
Would this work?

crontab -l > cronjobs
echo "15 * * * * /usr/sbin/nypdate -s x.x.x.x" >> cronjobs
crontab cronjobs
crontab -l
 
Mis-type for ntpdate. I accidentally spelled ntydate

Correction below...

crontab -l > cronjobs
echo "15 * * * * /usr/sbin/ntpdate -s x.x.x.x" >> cronjobs
crontab cronjobs
crontab -l
 
Our CMS is setup to get its timing from the PBX which is getting its timing from NTP. Look on the main CMS menu under System Setup>CMS State. Our CMS shows the following:

Master ACD for clock synchronization: LPT1


 
In folder /etc/inet/ copy file ntp.client to ntp.conf and using vi editor write the ntp server. Then restart ntpd service.
My ntp.conf file:
# ident "@(#)ntp.client 1.3 00/07/17 SMI"
#
# /etc/inet/ntp.client
#
# An example file that could be copied over to /etc/inet/ntp.conf; it
# provides a configuration for a host that passively waits for a server
# to provide NTP packets on the ntp multicast net.
#
#LAN NTP server
server 192.168.130.134
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top