- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- default route
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-18-2000 11:16 PM
07-18-2000 11:16 PM
default route
ethernet 1-internal network
ethernet 2-DMZ
ethernet 3-isp1
ethernet 4-isp2
How to provide multiple default (gateway)route in hp/ux10.20?
do i really have to add in netconf file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2000 11:46 PM
07-18-2000 11:46 PM
Re: default route
you can manually add default routes:
route add default
for each lan card.
But this routes are NOT permanent , they go away if you reboot the machine.
So you have to add /etc/rc.config.d/netconf
and add your routes there:
ROUTE_DESTINATION[0]="default"
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=
ROUTE_COUNT[0]=""
ROUTE_ARGS[0]=""
ROUTE_DESTINATION[1]="default"
ROUTE_MASK[1]=""
ROUTE_GATEWAY[1]=
ROUTE_COUNT[1]=""
ROUTE_ARGS[1]=""
and so on.
Regards
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2000 05:43 PM
07-19-2000 05:43 PM
Re: default route
info from hp professional that the MULTIPLE
DEFAULT GATEWAY are not supported in 10.20.
is it true?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 03:05 AM
07-20-2000 03:05 AM
Re: default route
Actually, I don't see the use in having multiple default routes. I don't know the algorithm of the IP routing, but it probably is one of
- use first default route encountered
- use all default routes in turn
So where would the advantage be?
In the first case, the same route would always be used.
In the second case, 1 packet would use default route 1, while the next would use default route 2.
Neither seems to be better than having only 1 default route.
The default route serves as a means to route packets if all other routes fail, so 1 of them should suffice.
Bye,
Rik.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 03:24 AM
07-20-2000 03:24 AM
Re: default route
This is text from HP-UX 10.20 "man routing" command;
There may still be multiple routing entries remaining. In that case the IP packet is routed over the first entry displayed by netstat -r.
Such multiple routes include:
+ Two or more routes to a host via ifferent
gateways.
+ Two or more routes to a network via
different gateways.
+ Two default routes.
You can specify several default routes but HP-UX alway use only the first one.