- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NIC card Fail-Over configuration
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
07-07-2003 05:47 AM
07-07-2003 05:47 AM
NIC card Fail-Over configuration
We have 2 NIC cards in the server. One of them should serve as a primary NIC card and other one should server as a secondary/fail-over.
Here is the primary NIC config:
#8/8/1/0
INTERFACE_NAME[0]=lan0
IP_ADDRESS[0]=198.102.24.133
SUBNET_MASK[0]=255.255.255.0
BROADCAST_ADDRESS[0]="198.102.24.255"
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=0
Please let me know how can I configure the 8/12/2/0 NIC as a fil-over to the first card?
Thanks,
Nikee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 05:50 AM
07-07-2003 05:50 AM
Re: NIC card Fail-Over configuration
Hope it helps
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 05:51 AM
07-07-2003 05:51 AM
Re: NIC card Fail-Over configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 05:54 AM
07-07-2003 05:54 AM
Re: NIC card Fail-Over configuration
I think MC Service Guard can do the thrick. I'll try to find a manual for you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 06:01 AM
07-07-2003 06:01 AM
Re: NIC card Fail-Over configuration
http://docs.hp.com/hpux/netcom/index.html#Auto%20Port%20Aggregation%20(APA)
or use ServiecGuard, see the Managing MC/ServiceGuard manual at:
http://docs.hp.com/hpux/netcom/index.html#Auto%20Port%20Aggregation%20(APA)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 06:10 AM
07-07-2003 06:10 AM
Re: NIC card Fail-Over configuration
Poor man's service guard. Absolutely untested.
assumes primary NIC is lan0 secondary is lan1
# try five times, timeout is 30 seconds
ping hps_ip_address -n 5 -m 30
rc=$?
if [ rc ne 0 ]
then
mailx -s "NIC failover occurred" sysadmins@yourdomain.com
ifconfig lan0 down
ifconfig lan1 192.168.0.15 netmask 255.255.255.0 up
rc=$?
fi
if [ rc ne 0 ]
mailx -s "NIC failover attempt failed" sysadmins@yourdomain.com
fi
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 12:56 PM
07-07-2003 12:56 PM
Re: NIC card Fail-Over configuration
HPUX had no option that build in and if you
want so you need to by auto-port aggregation
that will do the job.
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 02:42 PM
07-07-2003 02:42 PM
Re: NIC card Fail-Over configuration
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2003 10:40 PM
07-07-2003 10:40 PM
Re: NIC card Fail-Over configuration
Following entry put in the /etc/rc.config.d/netconf file
INTERFACE_NAME[1]=lan1
IP_ADDRESS[1]=192.102.24.*
SUBNET_MASK[1]=255.255.255.0
BROADCAST_ADDRESS[1]="198.102.24.255"
INTERFACE_STATE[1]""
DHCP_ENABLE[1]=0
and also put the ip address entry in /etc/hosts file
and restart the service or system
check the through ifconfig,lanscan, netstat -in or lanadmin whether all interface up or not