- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to apply route info at boot
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
10-04-2005 03:34 AM
10-04-2005 03:34 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:42 AM
10-04-2005 03:42 AM
Re: Unable to apply route info at boot
Well, I am not sure if this is a fluke or not, but I was on the same boat. And magically after I added the words "host" and "net" preceeding the ROUTE_DESTINATION ip addresses, it started to work. I had to specify 24 static routes and no default route for a server of mine.
my static routes are looking like this right now:
for the host routes:
ROUTE_DESTINATION[1]="host 14.67.82.221"
ROUTE_MASK[1]=""
ROUTE_GATEWAY[1]="10.44.5.254"
ROUTE_COUNT[1]="1"
ROUTE_ARGS[1]=""
and for the net routes
ROUTE_DESTINATION[22]="net 10.40.12.0"
ROUTE_MASK[22]="255.255.255.0"
ROUTE_GATEWAY[22]="10.44.12.254"
ROUTE_COUNT[22]="1"
ROUTE_ARGS[22]=""
Also, I specified my host routes prior to net routes in the file. I found the process as a crap shoot. This config worked and others I tried failed with many errors.
HTH
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:44 AM
10-04-2005 03:44 AM
Re: Unable to apply route info at boot
Check the ouput to:
ioscan -funC lan
ifconfig lan# ; # corresponds to the instance for your network adapter from ioscan.
netstat -rn
Check /etc/rc.config.d/netconf and make sure the correct lan# is assigned to your network config.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:44 AM
10-04-2005 03:44 AM
Re: Unable to apply route info at boot
You may configure the on board lan first for that the drivers would be there in installed kernel .
thx,
bl.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 07:15 AM
10-04-2005 07:15 AM
Re: Unable to apply route info at boot
The part that really bugs me is that I cannot manually do a route add command to get my route in, says that the network is unreachable, but shouldn't be since that router is on the same network. I don't believe this to be a driver problem based on the fact that the built in lan is giving the same results and using a completely different driver.
Any other thoughts come to mind? Any help is greatly appreciated, thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 07:24 AM
10-04-2005 07:24 AM
Re: Unable to apply route info at boot
(This is for a host route)
route add x.y.w.z A.B.C.D 1
where x.y.w.z is teh destination host
A.B.C.D is the gateway
1 is the indicator that this destination is not directly connected to yuor host.
HTH
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 08:27 AM
10-04-2005 08:27 AM
Re: Unable to apply route info at boot
ROUTE_DESTINATION[0]="default"
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]="172.18.4.1"
ROUTE_COUNT[0]="0"
ROUTE_ARGS[0]=""
It is the same as every other 11i box I've touched here in house, with the exception of course that the gateway might be a little different depending on the vlan. Mel, given your hint on adding host or net, do you know the syntax for adding just one default route?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 08:42 AM
10-04-2005 08:42 AM
Solutionthe startling thing in your config is
ROUTE_COUNT="0"
line. Usually, this is set to 1 for the purpose I explained in my previous post. 0 here means that, the interface on this very same server is the router itself, which is a very poor way of configuring a default route, equivalent to throwing out the packet and hoping that some actual cisco/extreme/foundry/etc. router is going to pick it up and forward it. Instead, you should be putting the actual router's IP address and set the ROUTE_COUNT to 1.
if you have the luxury of rebooting this server one more time, try this approach.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:20 PM
10-04-2005 03:20 PM
Re: Unable to apply route info at boot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:24 PM
10-04-2005 03:24 PM
Re: Unable to apply route info at boot
ROUTE_COUNT="0"
line. Usually, this is set to 1 for the purpose I explained in my previous post. 0 here means that, the interface on this very same server is the router itself, which is a very poor way of configuring a default route, equivalent to throwing out the packet and hoping that some actual cisco/extreme/foundry/etc. router is going to pick it up and forward it. Instead, you should be putting the actual router's IP address and set the ROUTE_COUNT to 1.