- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to add permanent route for HP11.11 server
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-18-2003 09:48 PM
11-18-2003 09:48 PM
I need to add a route permanently in my HP11.11 server. Which file do i need to update the route?
In Tru64, the route file is /etc/routes.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 09:50 PM
11-18-2003 09:50 PM
Re: How to add permanent route for HP11.11 server
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 09:54 PM
11-18-2003 09:54 PM
Re: How to add permanent route for HP11.11 server
You can add it in /etc/rc.config.d/netconf
just use the route add command to add it on line.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 09:57 PM
11-18-2003 09:57 PM
Re: How to add permanent route for HP11.11 server
entry in it should look like this once done;
ROUTE_DESTINATION[0]="default"
ROUTE_GATEWAY[0]="10.132.16.1"
ROUTE_COUNT[0]="1"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 09:59 PM
11-18-2003 09:59 PM
Re: How to add permanent route for HP11.11 server
can you give me some examples on how to use the route command.
I need to add 15.48.31.1 as a gateway for all 15.48 traffic to go via this gateway.
I not too familiar with these parm in netconf
ROUTE_DESTINATION[0]="??"
ROUTE_MASK[0]="??"
ROUTE_GATEWAY[0]="??"
ROUTE_COUNT[0]="??"
ROUTE_ARGS[0]="??"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:01 PM
11-18-2003 10:01 PM
Re: How to add permanent route for HP11.11 server
the gateway i want to add is a second gateway beside the default. wat's the value
for
ROUTE_DESTINATION[0]="??"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:24 PM
11-18-2003 10:24 PM
Re: How to add permanent route for HP11.11 server
ROUTE_DESTINATION[1]=
ROUTE_MASK[1]=""
ROUTE_GATEWAY[1]=
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 10:29 PM
11-18-2003 10:29 PM
Solutionroute add net
This translates into netconf as:
ROUTE_DESTINATION[n]="net
ROUTE_MASK[n]=
ROUTE_GATEWAY[n]=
ROUTE_COUNT[n]=1
ROUTE_ARGS[n]=""
n starts as 0 and should be incremented for each route entry.
The example addresses that you have supplied don't appear valid because your router address is in the subnet you want to route to.
Regards,
John