1832878 Members
2510 Online
110048 Solutions
New Discussion

Re: APA software

 
Jimmy Tom_2
Frequent Advisor

APA software

Is there another HP supported way to provide active/passive and active/active network fail over capabilities without this APA software?

It seems that IBM and SUN have this feature for free, while HP charge money for the APA sw.

thx in advance
5 REPLIES 5
Sridhar Bhaskarla
Honored Contributor

Re: APA software

Hi,

Only otherway I know is with ServiceGuard which does Active/passive failover. And you will have to pay for it too. You can setup a single node cluster which can take care of active - standby lan card failure.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
Jimmy Tom_2
Frequent Advisor

Re: APA software

Sridhar, are you saying I have to paid HP for either the apa sw or ServiceGuard sw to get this feature? There is no other way?

thx
Sridhar Bhaskarla
Honored Contributor

Re: APA software

Hi,

You could probably do an active/passive with your own scripts. But as far as HP goes and my knowledge goes, there isn't any free way of doing either of active/passive and active/active.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
Jimmy Tom_2
Frequent Advisor

Re: APA software

So what commands would you use to do the active/pass link?
Sridhar Bhaskarla
Honored Contributor

Re: APA software

Hi Jimmy,

You will need to have a standby card connected to the same lan (bridged) but in unconfigured state.

You can write a script that runs either through cron or continuously with sleeps in it. You will need to find if the primary interface is down. One way is to check for the hardware state of the lancard. You can use a small script like below

lanadmin << EOF 2>&1 |grep "Operation Status"
lan
ppa 5
display
quit
EOF

If the output is down, then the physical state of the card is possibly down, then you can use 'ifconfig' command to unconfigure the primary interface and configure the IP address on the standby interface.

This is only an idea. You will need to improvise on it.

-Sri

You may be disappointed if you fail, but you are doomed if you don't try