- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- MCSG and NTP
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
Forums
Discussions
Discussions
Discussions
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
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
02-03-2006 04:39 AM
02-03-2006 04:39 AM
MCSG and NTP
97.210 is also my configured IP that NTP uses as this is our master NTP server that talks to Ohio State U., MIT and GATECH.
If the cluster and package were to fail over to the N4000 then I would want the NTP stuff to move over as well. I know how to set this up as a cluster service, but what I am asking is how do I tell HPUX to use 97.6 as the NTP address to server my LAN clients instead of the system IP address?
thanks
derek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 04:47 AM
02-03-2006 04:47 AM
Re: MCSG and NTP
You should run 'xntpd' on all nodes of the cluster. Then, regardless of where the application runs, time will be correct.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 04:52 AM
02-03-2006 04:52 AM
Re: MCSG and NTP
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 04:55 AM
02-03-2006 04:55 AM
Re: MCSG and NTP
No need to worry about what the cluster is doing then, the time will always be correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 04:55 AM
02-03-2006 04:55 AM
Re: MCSG and NTP
It sounds like a MCSG environment is not a good mix with an NTP server???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 05:05 AM
02-03-2006 05:05 AM
Re: MCSG and NTP
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 05:06 AM
02-03-2006 05:06 AM
Re: MCSG and NTP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 05:07 AM
02-03-2006 05:07 AM
Re: MCSG and NTP
You could configure each node to be a broadcaster to you LAN.
http://docs.hp.com/en/B2355-90685/ch07.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 05:11 AM
02-03-2006 05:11 AM
Re: MCSG and NTP
NTP is not configured to listen at 97.6 (floater IP) and this is what I need to do. : )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 01:05 PM
02-03-2006 01:05 PM
Re: MCSG and NTP
now, if you've packaged xntpd such that it is started whenever serviceguard does its thing rather than when the system does its boot thing (not sure if i'm ratholing there or not) then presumably the IP would be assigned by then, but who knows.
however, as already pointed-out, i'm pretty sure it isn't a case of telling the xntpd on which IP's it should serve time, but telling the clients from which IP's they should request time.
finally, since NTP clients have had "built-in" HA gong back to before the time when ServiceGuard was a gleam in HP's eye, you don't really need to make NTP a package at all. you simply need to configure your clients with the primary IP's of both your rp8400 and n4000, and preferably at least one other source of time, and let them deal with the rest. less muss, less fuss
same thing with DNS service
getting back to your clients reporting "trying trying" - can they ping your 97.6 address?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2006 06:57 AM
02-04-2006 06:57 AM
Re: MCSG and NTP
once xntpd is up and running on both cluster nodes, I would check my ntp clients this way:
-stop the daemon for a while if it's running:
# /sbin/init.d/xntpd stop
-verify connection with ntp server:
# ntpdate -d ...97.210
# ntpdate -d ...97.106
if this doesn't work then your clients don't reach ntp server on port 123, (did you open it only for the floating IP?)
Then configure
#vi /etc/ntp.conf
server ...97.210
server ...97.106
-initial clock alignment:
# ntpdate ip_ntpserver
-start daemon
# /sbin/init.d/xntpd start
-check
# ntpq -p
Hope this helps
Pablo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2006 07:38 AM
02-04-2006 07:38 AM
Re: MCSG and NTP
It is also possible to configure two NTP servers on all the clients one as primary and other as secondry. The best is to configure floating IP as NTP source allthough.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2006 04:42 AM
02-05-2006 04:42 AM
Re: MCSG and NTP
rp8400 and n4000 to be sure you don't restrict access from your clients to ntp server like this:
restrict default ignore
restrict x.y.z.w # your client?