- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NTP Server & Client Synchronization Status
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
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
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- 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
тАО01-23-2005 06:10 PM
тАО01-23-2005 06:10 PM
NTP Server & Client Synchronization Status
We are having ntp server whcih is serving around 35 clients in our data centre. Is there any way to find out synchronization status of all clients from one single command. Usually we run remsh date for all servers and compare output to confirm synchronization. Allthough it is also done through a script only but is there some other way possible of simplifying it.
And can we have some command which will tell us the time deference in two times.
Regards,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2005 06:54 PM
тАО01-23-2005 06:54 PM
Re: NTP Server & Client Synchronization Status
of the status of NTP client. See NTP docs at
http://docs.hp.com/en/B2355-90774/ch04s02.html
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-24-2005 07:19 AM
тАО01-24-2005 07:19 AM
Re: NTP Server & Client Synchronization Status
NTP is a protocol where a client can track multiple
servers and use the time from one that it thinks is
the best. At the same time, it will still keep track of
other servers too and switch over to another server
if it thinks that it found a better one. The server
has no way of knowing if the client is going to use
it's time. So if you want to keep track of clients,
you will have to run the command on each client to
findout which server it is using. Instead of using
'date' in your script, you should be running "ntpq -p"
and parsing it's output.
I'm afraid, I don't have a better answer. If you
discover one, then post it here.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-24-2005 07:28 AM
тАО01-24-2005 07:28 AM
Re: NTP Server & Client Synchronization Status
for i in $(cat /tmp/client.list)
do
echo ${i}
ntpq -p ${i}
done
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-24-2005 07:39 AM
тАО01-24-2005 07:39 AM
Re: NTP Server & Client Synchronization Status
* = selected for sync
x = not selected due to errors
- = not selected due to errors
+ = deemed accurate
The REACH value will be 377 on good servers, less on problem servers. When the network is quite stable, the POLL value will be 1024 indicating that time sync requests have been reduced to once every 1024 sec (17 minutes). If you have only one server (not a good idea for a data center), then it should always have * in front of the server's name.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-29-2005 06:09 PM
тАО01-29-2005 06:09 PM
Re: NTP Server & Client Synchronization Status
Regards,
Devender