- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: APA - Monitoring
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
11-12-2002 05:09 AM
11-12-2002 05:09 AM
APA - Monitoring
is anybody from you using APA (Auto Port Aggregation) for IP failover reasons?
How do you monitor a failover?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 05:33 AM
11-12-2002 05:33 AM
Re: APA - Monitoring
http://docs.hp.com/hpux/11i/index.html
in particular, read Chapter 5 of
http://docs.hp.com/hpux/onlinedocs/J4240-90016/J4240-90016.html Which discusses the Lan Monitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 06:19 AM
11-12-2002 06:19 AM
Re: APA - Monitoring
I just cannot find any documentation of the monitoring of a IP failover. There is no entry in any log. I also know already this documents.
They have no hints as well.
So the Question :
who is using APA and how do you monitor the failover?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2002 07:42 AM
11-12-2002 07:42 AM
Re: APA - Monitoring
With couple of commands ("netstat -in" and "lanscan -q") you would know if main or failover port is active, no? And that can be scripted to check and send you an email/page.
Just a thought.
...Manjeet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2002 02:26 AM
11-13-2002 02:26 AM
Re: APA - Monitoring
I use lanscan -q to look at the state of aggregates.
All my aggregates are gigabit so i use
lanadmin -x card_info GBcardPPA to look at the link state of the cards.
Here is an example script to infer the current primary and standby from the output of lanscan -q
#!/usr/bin/ksh
LINKAGG=100
#LINKAGG should be set to the PPA number of the aggregated LAN interface you wish to monitor
lanscan -q | grep ^${LINKAGG} | awk '{print $2,$3}' | read AGGPORT1 AGGPORT2
echo "Current LIVE interface for aggregate lan${LINKAGG} is lan${AGGPORT1}"
echo "Current STANDBY interface for aggregate lan${LINKAGG} is lan${AGGPORT2}"