- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: About 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
03-09-2002 01:05 AM
03-09-2002 01:05 AM
The default route is not working if the default gateway cannot be ping. (As set in the firewall, the gateway cannot be ping by any machine and cannot change it). The thing that I want is when default route is used, cannot go
to ping the default gateway and just go out through the default gateway without ping it. Could you please give me a hand for this? As told by somebody, there are some parameters to set in HP 9000 server in order to solve the problem but do not know what parameter is.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2002 01:09 AM
03-09-2002 01:09 AM
Re: About default route
Disable dead gateway detection by executing:
# ndd -set /dev/ip ip_ire_gw_probe 0
To permanently set it in your system startup, modify your /etc/rc.config.d/nddconf:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
Note that the index must be unique if you already have other values set inside the configuration file.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:14 AM
03-12-2002 08:14 AM
Re: About default route
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:18 AM
03-12-2002 08:18 AM
SolutionHere is my notes on the subject.
???HPUX 11.00 supports multiple gateways using route add. It will use default first and check to see if the default router is available by sending it a ping. If it doesn't get a reply, it will consider the route dead and move to the next gateway defined. If there are no other gateways defined then it will shut down all outbound traffic. The fix is to make sure that your router responds to ICMP requests or to run this command to turn probing off 'ndd -set /dev/ip ip_ire_gw_probe 0'
then add an entry in /etc/rc.conf.d/nddconf to turn the probing off at each reboot. Then re-add the route and everything works???
- It was discovered that 10.15.248.1 would not accept ICMP traffic, thus it was considered a ???Dead Gateway??? and all traffic would be routed through 10.15.248.5. I tried to change this parameter, but ip_ire_gw_probe was not an option, so my search continued. I finally found this post on at http://aa11.cjb.net/hpux_admin/2000/04/0209.html
???I finally gave up and called HP support on this. Two sentences into my
description, he knew what the problem was. He also told me "You would have
never found it"
The problem was a little feature in HPUX 11.0 know as 'Dead Gateway
Detection'
What happens is, HP pings the router occasionally (180000 seconds is the
default) to make sure it is still up. If it doesn't get a response, it
stops routing to that address. Since we are using a firewall as a the
default gateway, and the firewall doesn't respond to pings (stealth mode),
then HP assumes the gateway is down and stops routing to it. This also
explains why it wasn't a problem when I had the system on our other network,
that uses a router instead of the firewall.
The fix it to load patches PHNE_20735 and PHNE_20316 and then put the
following entry into /etc/rc.config.d/nddconf
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
To check the current value, use:
ndd -get /dev/ip ip_ire_gw_probe
You can also set the value by using:
ndd -set /dev/ip ip_ire_gw_probe 0
although you will have to reset it after reboot (so just go ahead and set it
up in nddconf)???
GL,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:22 AM
03-12-2002 08:22 AM
Re: About default route
I have tried the following command on both 11.0 and 11i and it works:
# ndd -get /dev/ip ip_ire_gw_probe
1
I also did the following on my 11i box:
# ndd -set /dev/ip ip_ire_gw_probe 0
#ndd -get /dev/ip ip_ire_gw_probe
0
Note that there is a space between /dev/ip and ip_ire_gw_probe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:35 AM
03-12-2002 08:35 AM
Re: About default route
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:48 AM
03-12-2002 08:48 AM
Re: About default route
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:58 AM
03-12-2002 08:58 AM
Re: About default route
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 06:35 PM
03-12-2002 06:35 PM
Re: About default route
Ron