- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Routing for HP-UX box with two LAN cards
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-22-2002 06:41 AM
02-22-2002 06:41 AM
I have a HP-UX 11.0 server with two LAN interfaces in different subnetworks.
IP1 = 1.1.1.1
IP2 = 2.2.2.2
Default Gateway = 1.1.1.254
Incoming packets can reach the system via any of the two interfaces, but outcoming packets are sent only via default gateway. Question: how to configure the second gateway with smaller priority (e.g. 2.2.2.254) to be used when the second LAN goes down?
I'd like to find a solution in terms of netconf statements, because the docs do not have example with two default gateways.
Thanks in advance!
BR,
Mihail
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2002 06:48 AM
02-22-2002 06:48 AM
Re: Routing for HP-UX box with two LAN cards
Check this out:
http://us-support.external.hp.com/cki/bin/doc.pl/sid=be6938bb09b46a1509/screen=ckiDisplayDocument?docId=200000009872320
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2002 06:48 AM
02-22-2002 06:48 AM
SolutionJust define another route with a larger metric:
route add default 2.2.2.254 2
or in your /etc/rc.config.d/netconf file :
ROUTE_DESTINATION[1]=default
ROUTE_GATEWAY[1]=2.2.2.254
ROUTE_COUNT[1]=2
No traffic will be sent to the second default gateway unless the first one fails.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2002 06:50 AM
02-22-2002 06:50 AM
Re: Routing for HP-UX box with two LAN cards
See this link:
http://us-support.external.hp.com/cki/bin/doc.pl/sid=be6938bb09b46a1509/screen=ckiDisplayDocument?docId=500000000092418
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2002 09:21 AM
02-26-2002 09:21 AM
Re: Routing for HP-UX box with two LAN cards
BR,
Mihails