- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- default gateway stops working some time after a re...
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-22-2006 12:45 AM
11-22-2006 12:45 AM
Bizarre scenario here. I have a HPUX 11.11 system whose default gateway seems to stop working some time (still to be determined) after a reboot.
The system is a web server sitting behind a firewall, with the inner port of the firewall set as the default gateway. I can browse to the web site without issue from the local LAN.
If I reboot the system, I can browse to is from the internet without difficulty. However after a short while (< 2hours, but I'm not sure exactly how much less) the site stops responding from the web, yet is still available from the local LAN.
If I add a static route to the public address using the same address as the default gateway, the site responds again. Netstat -r shows that the default gateway is still set to 192.168.1.100.
I would appreciate any advice on where to start looking for this.
Attached is my netconf - note the number of logical IP addresses - the web site in question is listening on 192.168.1.61, but this issue also happens when it listens on the physical card's address 192.168.1.21
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 12:49 AM
11-22-2006 12:49 AM
Solutiondid you go through this thread ?
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=109413
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 01:18 AM
11-22-2006 01:18 AM
Re: default gateway stops working some time after a reboot
For HP-UX ver 11.00 and up, there is a dead gateway detection feature that is on by default. This feature will ping the gateway every few minutes to make sure it is still there. For security, many network admins will disable ping responses for the gateway and HP-UX will disable the route after a few minutes.
To see if the setting is turned on or off, use:
ndd -get /dev/ip ip_ire_gw_probe
1 means the detection feature is enabled. To turn off this feature:
ndd -set /dev/ip ip_ire_gw_probe 0
This is a temporary change. To make it permanent, edit your /etc/rc.config.d/nddconf file to add:
TRANSPORT_NAME[1]=ip
NDD_NAME[1]=ip_ire_gw_probe
NDD_VALUE[1]=0
Be sure to substitute the next available array element for [0] in case [0] is already in use.
Note also that for 11.00, early versions of ndd had a bug that prevented the changes in nddconf from taking effect. Get the latest ndd patch.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 01:18 AM
11-22-2006 01:18 AM
Re: default gateway stops working some time after a reboot
I noticed (but ignored) dropped ICMP echo traffic from this system on the firewall logs. Thanks for the pointer Peter - sorry I didn't see that thread on my search.
I resolved by adding the following to the /etc/rc.config.d/nddconf file
# don't check the default gateway
TRANSPORT_NAME[10]=ip
NDD_NAME[10]=ip_ire_gw_probe
NDD_VALUE[10]=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 01:23 AM
11-22-2006 01:23 AM