- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Default Gateway 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
03-23-2001 11:09 PM
03-23-2001 11:09 PM
Default Gateway Problem
In our HP 9000 L1000 server running HP-UX 11.00, whenever the server is rebooted, the default gateway vanishes. So now we are adding it everytime after rebooting the server.
Can anyone prescribe a way to avoid this problem.
Awaiting for all of your valuable replies.
Thanks and Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2001 11:58 PM
03-23-2001 11:58 PM
Re: Default Gateway Problem
How did you setup the gateway? I found using the "set_parms" command is the most reliable way of doing this. Also, if you could post the /etc/rc.config.d/netconf file of your system that would made the trouble shooting process much easier.
Rgds,
Philip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2001 05:04 AM
03-24-2001 05:04 AM
Re: Default Gateway Problem
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2001 07:15 AM
03-24-2001 07:15 AM
Re: Default Gateway Problem
Goodluck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2001 06:40 PM
03-24-2001 06:40 PM
Re: Default Gateway Problem
Check for errors in the /etc/rc.log file.
The default gateway/route should be defined in the /etc/rc.config.d/netconf near the bottom of the file. Also check for duplicates/backups of this file in the /etc/rc.config.d directory as I've seen some situations where this causes weird problems.
Hope that helps.
Jason
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2001 02:14 AM
03-26-2001 02:14 AM
Re: Default Gateway Problem
HP-UX 11.00 has a "feature" called Dead Gateway Detection. Basically, the OS tries to ping its default gateway. If the default gateway doesn't respond, the OS just deletes the route entry. Nice feature, huh?
To prevent the OS from doing so you have to use ndd. This can be done on the fly:
ndd -set /dev/ip ip_ire_gw_probe 0
But, if you want this setting to remain active after a reboot, edit your /etc/rc.config.d/nddconf accordingly:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
Hope this helps..
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2001 02:44 AM
03-26-2001 02:44 AM
Re: Default Gateway Problem
Setup is done in the /etc/rc.config.d/netconf file under the config of your interface:
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=172.10.1.254
ROUTE_COUNT[0]=0
ROUTE_ARGS[0]=""
For a hub/router/switch you will want to set
ROUTE_COUNT=1.
For local interface card you will set
ROUTE_COUNT=0.
Marcel