HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ntp question
Operating System - HP-UX
1833770
Members
2084
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2002 07:41 PM
03-14-2002 07:41 PM
ntp question
i find in syslog.log,there are so many xntpd message,like this:Mar 14 09:56:34 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 09:57:31 dm-px xntpd[27375]: synchronized to 192.168.20.23, stratum=3
Mar 14 10:12:34 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:13:21 dm-px xntpd[27375]: synchronized to 192.168.24.25, stratum=3
Mar 14 10:14:25 dm-px xntpd[27375]: synchronized to 192.168.24.27, stratum=3
Mar 14 10:14:08 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:22:49 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:23:32 dm-px xntpd[27375]: synchronized to 192.168.24.25, stratum=3
Mar 14 10:32:36 dm-px xntpd[27375]: synchronized to 192.168.24.27, stratum=3
Mar 14 10:33:06 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:31:04 dm-px xntpd[27375]: synchronized to 192.168.24.25, stratum=3
Mar 14 14:49:19 dm-px xntpd[27375]: synchronized to 192.168.24.27, stratum=3
Mar 14 14:49:41 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
i guess the frequency is too high,and what should i do to adjust it.
BTW,i dont add driftfile /etc/ntp.drift in ntp.conf.
Mar 14 09:57:31 dm-px xntpd[27375]: synchronized to 192.168.20.23, stratum=3
Mar 14 10:12:34 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:13:21 dm-px xntpd[27375]: synchronized to 192.168.24.25, stratum=3
Mar 14 10:14:25 dm-px xntpd[27375]: synchronized to 192.168.24.27, stratum=3
Mar 14 10:14:08 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:22:49 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:23:32 dm-px xntpd[27375]: synchronized to 192.168.24.25, stratum=3
Mar 14 10:32:36 dm-px xntpd[27375]: synchronized to 192.168.24.27, stratum=3
Mar 14 10:33:06 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
Mar 14 10:31:04 dm-px xntpd[27375]: synchronized to 192.168.24.25, stratum=3
Mar 14 14:49:19 dm-px xntpd[27375]: synchronized to 192.168.24.27, stratum=3
Mar 14 14:49:41 dm-px xntpd[27375]: synchronized to 192.168.29.3, stratum=2
i guess the frequency is too high,and what should i do to adjust it.
BTW,i dont add driftfile /etc/ntp.drift in ntp.conf.
hihi
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2002 10:21 PM
03-14-2002 10:21 PM
Re: ntp question
You probably have a NTP-client listening to NTP-broadcasts, and you have a number NTP-Servers sending brodcasts:
192.168.20.23, stratum=3
192.168.29.3, stratum=2
192.168.24.25, stratum=3 192.168.24.27, stratum=3
Make only one NTP-Server sending broadcasts:
192.168.29.3, stratum=2
Or make your NTP-client not to listen to broadcasts.
Hardy
192.168.20.23, stratum=3
192.168.29.3, stratum=2
192.168.24.25, stratum=3 192.168.24.27, stratum=3
Make only one NTP-Server sending broadcasts:
192.168.29.3, stratum=2
Or make your NTP-client not to listen to broadcasts.
Hardy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2002 02:13 AM
03-15-2002 02:13 AM
Re: ntp question
hi,
check your /etc/ntp.conf file
#grep -v "^#" /etc/ntp.conf
and make sure there is only entry like
*****
server version 3 prefer
******
I think you have three such entries which means it is pointing to three NTP servers and is getting broadcast messages from them. Turn off broadcasting in case it is on. Once you do this, stop and restart ntp by /sbin/init.d/xntpd stop/start
Another check after starting ntp is run:
#ntpq -p it shows the ntp servers the system is listening to.
HTH
raj
check your /etc/ntp.conf file
#grep -v "^#" /etc/ntp.conf
and make sure there is only entry like
*****
server
******
I think you have three such entries which means it is pointing to three NTP servers and is getting broadcast messages from them. Turn off broadcasting in case it is on. Once you do this, stop and restart ntp by /sbin/init.d/xntpd stop/start
Another check after starting ntp is run:
#ntpq -p it shows the ntp servers the system is listening to.
HTH
raj
Take it easy.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP