- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 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
01-04-2002 01:02 PM
01-04-2002 01:02 PM
What happened? Is there a config file somewhere that needs to be updated for this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:06 PM
01-04-2002 01:06 PM
Re: default gateway problem
Yes, you need to modify /etc/rc.config.d/netconf. Make a "stanza" for the default route similar to:
ROUTE_DESTINATION[4]="net default"
ROUTE_MASK[4]=""
ROUTE_GATEWAY[4]=10.1.1.200
ROUTE_COUNT[4]=1
ROUTE_ARGS[4]=""
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:08 PM
01-04-2002 01:08 PM
Re: default gateway problem
Edit the file /etc/rc.config.d/netconf. You will get descriptions for each arguments in that file itself. Edit route defenitions and change it to new address for a permanent change.
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:08 PM
01-04-2002 01:08 PM
Re: default gateway problem
You need to add this entry in /etc/rc.config.d/netconf file.
This will maintain default gateway even after reboot.
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:10 PM
01-04-2002 01:10 PM
Re: default gateway problem
File is /etc/rc.config.d/netconf
The entry looks like this..
To set the default gateway, you will need to edit the following:
/etc/rc.config.d/netconf
ROUTER_DESTINATION[0]="default"
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]="15.XX.XXX.1"
ROUTE_COUNT[0]="0"
ROUTE_ARGS[0]=""
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:11 PM
01-04-2002 01:11 PM
Re: default gateway problem
As Darrell and Pat have shown, any commands like "route ..." are temporary.
To have the changes have to be put into /etc/rc.config.d/netconf .
Also, when making these changes, its a good time to do a make_recovery.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 01:19 PM
01-04-2002 01:19 PM
Re: default gateway problem
Thanks.