- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- Networking
- >
- Re: single ntp server for 3 setups
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- 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
- Email to a Friend
- Report Inappropriate Content
12-02-2012 09:58 PM - last edited on 12-04-2012 01:29 AM by Cathy_xu
12-02-2012 09:58 PM - last edited on 12-04-2012 01:29 AM by Cathy_xu
Hi ,
I have to configure a single ntp server for 3 of my setups in different networks.
such that if it goes down , the other server must be able to take it over , and even if that one fails it must take time from own local server.
i have googled and found the following ;
Hi,
please find the Local NTP server and NTP Client Configuration procedure as below,
Server Side Configuration:
**************************
Open the below file and modify the below lines as below,
vi /etc/rc.config.d/netdaemons
export INETD=1
NTPDATE_SERVER=
export XNTPD=1
export XNTPD_ARGS=
Now open below file and modify,
# vi /etc/ntp.conf
server 127.127.1.1
fudge 127.127.1.1 stratum=10
broadcast
now start the ntp service.
# /sbin/init.d/xntpd start
check the status that server is synchronizing locally through below command.
#ntpq -p
Now my question is wha ideally can act as a good ntp server ?
P.S. This thread has been moved from HP-UX>System Administration to HP-UX > networking- HP Forums Moderator
Solved! Go to Solution.
- Tags:
- NTP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-03-2012 06:33 AM
12-03-2012 06:33 AM
Re: single ntp server for 3 setups
> Now my question is wha ideally can act as a good ntp server ?
A computer connected to an atomic clock that is maintained by a person with a Ph.D. in Metrology :-)
But if a computer has a free serial port, you can get reasonably close to that ideal economically, by plugging a NMEA-0183-compatible GPS module to that serial port and ensuring that the antenna of the GPS module has a good view of the sky. Each GPS satellite includes a very good atomic clock and is constantly broadcasting the time.
The xntpd daemon includes a generic driver for NMEA-0183-compatible GPSs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-03-2012 08:52 PM
12-03-2012 08:52 PM
Re: single ntp server for 3 setups
Hi Matti ,
Thanks for that explaination.
But say if i have 3 different locations ( hp + aix servers ) kept in respective Data center ;
i want all of them to be in sync.
We connect to these three locations from a noc .
I need to configure the following
- windows box ( ntp server ) in NOC who would be in sync thru internet , which will inturn sync windows boxes kept in 3 different locations respectively.
- If main NOC box fails , the windows box at respective locations should be in sync..
- If 3 windows box also fail then , time should be taken from self system clock.
I hope m clear now.
Can this be achieved ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-04-2012 12:24 AM
12-04-2012 12:24 AM
SolutionYou asked for an "ideal" solution and you got it :-)
The solution for your problem might be as easy as listing all your NTP servers in the ntp.conf file.
Xntpd will automatically figure out what is the "best" source of time information, by measuring network round-trip delays and looking at the stratum values of each server.
(Background: a NTP server that gets its time directly from an atomic clock, a GPS receiver or equivalent reliable timesource has stratum 1. All the NTP clients and peers that get their time from syncing with that server will have stratum 2. Each subsequent link in the synchronization chain will increment the stratum value. In principle, the xntpd will pick the server that has the lowest stratum value, unless it has awful network connectivity to that server, or several other servers indicate a significantly different time.)
The question is: do you want the HP/AIX box you are configuring to act as a NTP server for other hosts or not?
If not, you won't need the "server 127.127.1.1" line (and its associated "fudge..." line) at all: the system will always fall back to the local clock when other sources are not available. As a bonus, if you use the "driftfile" keyword, xntpd will calculate the average system clock error and will automatically apply the correction while xntpd is running, even if no other servers are reachable. This will minimize the local clock error even if all NTP access is temporarily lost.
The "server 127.127.1.1" line only allows xntpd to serve the local system clock time to other NTP clients and peers: if it is not used, the system clock time is used locally, but not announced with the NTP protocol to any other system. The "fudge..." line tells what stratum value xntpd should announce when it is relying on the local system clock for time information.
Assuming that you want this HP/AIX box to act as a broadcast NTP server for all local systems on its network segment, your ntp.conf might look like this:
driftfile /var/ntp/drift
server <NOCWindowsBox> prefer server <otherWindowsBox1> server <otherWindowsBox2> server <otherWindowsBox3> server 127.127.1.1 fudge 127.127.1.1 stratum=10 broadcast
Your three conditions would be satisfied like this:
1.) the Windows box at NOC should normally have the highest stratum, so it should be automatically the preferred time source. The "prefer" keyword is just an extra hint to xntpd that syncing with this server would be preferable over the others.
2.) You might just as well list all the other Windows NTP servers to enable xntpd to make cross-checks between the returned time values. If these get their time from the NOC, they should each have identical stratum value, so xntpd will pick the closest of these if the NOC server is not accessible. But if the local Windows box reports a wildly different time from the other servers (and the local system clock) compared to other reachable Windows NTP boxes, xntpd will label it as a "falseticker" and will attempt to maintain sync with one of the others.
3.) if none of the other time servers are reachable, the "server 127.127.1.1" will allow this server to continue NTP broadcasting using its local system clock only.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-05-2012 02:00 AM
12-05-2012 02:00 AM
Re: single ntp server for 3 setups
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP