- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Keep losing routing table information
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
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
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-14-2003 10:41 AM
тАО07-14-2003 10:41 AM
I have several HP-UX 11i stations that need access to the internet. The only thing I really need to do is add the gateway to their routing tables, and then they can see everything they need to. I type in the following command as root:
route add default 89.80.89.100 1
This IP is also in /etc/hosts as router, so I can also type:
route add default router 1
I can then ping URLs, web sites, etc.
However, this entry keeps getting lost! A few days later, when I try to call up a web address or something, this table entry is gone, and I can't get out again. This is a 24 hour environment, and sometimes these machines get reset. Is this entry not permanent? Does it get lost on reboot? What else might be happening? Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2003 10:45 AM
тАО07-14-2003 10:45 AM
Re: Keep losing routing table information
Add your entries to your '/etc/rc.config.d/netconf'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2003 10:45 AM
тАО07-14-2003 10:45 AM
Re: Keep losing routing table information
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=130.1.0.248
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""
You probably already have a default route defined, so add another entry, changing the [0] subscripts to [1].
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2003 10:48 AM
тАО07-14-2003 10:48 AM
Re: Keep losing routing table information
Edit the file:
You will see a section ROUTE_DESTINATION[0]=
set it
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=89.80.89.100
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""
You can add as many routes as needed by using higher subscripts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2003 10:55 AM
тАО07-14-2003 10:55 AM
SolutionOne other thing it may be is dead gateway detection. ie: Your server is sending ICMP requests to the gateway to see if it is still active. If the gateway doesn't accept ICPM requests your server will drop the route.
If that is the case, add the following to /etc/rc.config.d/nddconf:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2003 11:17 AM
тАО07-14-2003 11:17 AM
Re: Keep losing routing table information
Yes this data lost on reboot so add to
/etc/rc.config.d/netconf
ROUTE_DESTINATION[0]=default
ROUTE_GATEWAY[0]=89.80.89.100
ROUTE_COUNT[0]=1
Then it will work every boot.
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2003 02:53 AM
тАО07-15-2003 02:53 AM
Re: Keep losing routing table information
If you add the default gateway permenent then you have to put the entry in /etc/rc.config.d/netconf file
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=89.80.89.100
ROUTE_COUNT[0]=1
Save the file then restart the system it will work