- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- trouble with communication through a firewall
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-27-2001 09:29 PM
11-27-2001 09:29 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2001 06:57 AM
11-28-2001 06:57 AM
SolutionI experienced this just a few weeks ago, are you using 11.00? If so you are experiencing the Dead Gateway Detection problem. Here is my documentation from that experience.
???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???
???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)???
Hope this helps,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2001 07:03 AM
11-28-2001 07:03 AM
Re: trouble with communication through a firewall
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2001 07:04 AM
11-28-2001 07:04 AM
Re: trouble with communication through a firewall
What version of HP-UX are you running? I'm pretty sure that HP-UX probes it's default gateway using ICMP echo requests, to ensure connectivity.
I'm a bit confused on why you want to disable ICMP on the internal interface on your firewall/gateway box? What purpose does this serve?
On another note I think you can disable this probing in HP-UX 11.x+ by using ndd:
ndd -set /dev/ip ip_ire_gw_probe 0
Make sure you set the appropriate lines in
/etc/rc.config.d/nddconf if this solution works for you. Of course this sounds like a question for Rick Jones, as I'm sure he can shed much more light on the subject.
-Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2001 03:40 PM
11-28-2001 03:40 PM
Re: trouble with communication through a firewall
Mike and Craig
Q1. We are running HP-UX 11.00
Mike
Q2. We have icmp to the internal firewall interface turned off because the folks that have controll of these devices were told in a class that they should "enable stealth mode on the firewall". They have not as of yet done any customization to acommodate for the business needs. This is our first attempt in communicating through firewalls with the firewall as our gateway on our HP-UX systems. Until now it's been all NT to NT.
Mike
Q3. So far the only puropse I can see for not allowing icmp is to frustrate me.
Thank you both for your help. Just to let you know we have HP consulting on site here and you guys were able to provide an answer faster then them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2001 06:25 AM
11-29-2001 06:25 AM
Re: trouble with communication through a firewall
Glad to hear things worked out for you. Just wondering what kind of firewall your network group has installed? FW-1? I assume having the internal interface in "stealh" mode would prevent some DoS attacks from inside the corporation and possiblily other types of attacks.
Interesting configuration though, as there is no room for a DMZ to put webservers and things like that if you have a single point where the firewall resides without any "choke" routers inbetween. Thanks for the info, wish I had 11.0 installed as well so I could start to use some of the ndd commands :)
-Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2003 03:11 AM
04-23-2003 03:11 AM
Re: trouble with communication through a firewall
I'm using HPUX 11i and Mandrake firewall.
I just ran the ndd command and it works!
Thanks again,
S