- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Default gateway on HP-UX 11 problem
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
08-28-2001 09:04 PM
08-28-2001 09:04 PM
# ndd -set /dev/ip ip_ire_gw_probe 0
The problem we are experiencing is that after only about 3 mins following reboot the default gateway definition disappears out of the routing tables.
To get around this problem we have added a manual "route add default (IP address) 1" to the /sbin/init.d/net start-up script.
If anyone has experienced a similar problem or has any suggestions it would be much appreciated.
Thanks,
Dave
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 11:22 PM
08-28-2001 11:22 PM
Re: Default gateway on HP-UX 11 problem
even i too facing the same problem in Compaq unix 5.1. we need to add the default gateway after each reboot. even the compaq people failed to solve this prblem, we are living with this problem. In HP if you add default gateway in netconf file, system will recognise this at boot time.if not create a "defaultrouter" file in /etc and add the ip of the gateway in the file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 12:04 AM
08-29-2001 12:04 AM
Re: Default gateway on HP-UX 11 problem
richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 04:00 AM
08-29-2001 04:00 AM
Re: Default gateway on HP-UX 11 problem
I've never heard of this "Dead Gateway Detection" so have no idea of what it does but perhaps that is your problem. Does it mean that if nobody uses the gateway it removes it ? . Normally I just setup the gateways in the /etc/rc.config.d file as follows.
ROUTE_GATEWAY[0]=xxx.xxx.xxx.xxx
ROUTE_COUNT[0]=1
ROUTE_DESTINATION[0]=default
ROUTE_GATEWAY[1]=nnn.nnn.nnn.nnn
ROUTE_MASK[1]=255.255.255.0
ROUTE_COUNT[1]=1
ROUTE_DESTINATION[1]=123.123.123.0 net
The above sets up a default gateway and also a special route to a dedicated network. I have used this method since earlier releases of HP-UX and have not lost a route yet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 12:23 PM
08-29-2001 12:23 PM
SolutionDead gateway detection is something added to HP-UX 11 to detect "dead" gateways. It does this by pinging the gateway. If the gateway fails to respond to some number of pings, the routing code considers it to be dead and the system will stop using it.
However, many people arbitrarily disable responding to ICMP messages (eg PCMP Echo Request) on their gateways/routers/whatever, and this means that the dead gateway detection code will get a false positive.
For the question about adding multiple static routes, you want to edit the /etc/rc.config.d/netconf file. I'm guessing there is a way to get SAM to do that; if you edit it by hand be careful with your syntax :) Also, make sure there are no directives at the end of the file which might conflict with your changes - SAM hs (had?) the habit of putting things at the end of the file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 09:28 PM
08-29-2001 09:28 PM
Re: Default gateway on HP-UX 11 problem
Cheers,
Dave