- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- setup static routes on HPUX 11.11
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
08-15-2004 09:55 PM
08-15-2004 09:55 PM
How to setup a static routes on HPUX 11.11 ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:13 PM
08-15-2004 10:13 PM
Re: setup static routes on HPUX 11.11
I needed to set it as permanent.
thks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:14 PM
08-15-2004 10:14 PM
Re: setup static routes on HPUX 11.11
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xaa7b5220af9bd5118ff10090279cd0f9,00.html
regards,
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:19 PM
08-15-2004 10:19 PM
Re: setup static routes on HPUX 11.11
in file /etc/rc.config.d/netconf
add section
ROUTE_DESTINATION[1]="net x.x.x.x"
ROUTE_MASK[1]="y.y.y.y"
ROUTE_GATEWAY[1]="z.z.z.z"
ROUTE_COUNT[1]="1"
ROUTE_ARGS[1]=""
replace x.x.x.x, y.y.y.y z.z.z.z with you
parameters
and run command
/sbin/init.d/net start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:23 PM
08-15-2004 10:23 PM
Re: setup static routes on HPUX 11.11
docs.hp.com
enter the search keyword e.g. "route add"
Regards,
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:25 PM
08-15-2004 10:25 PM
Re: setup static routes on HPUX 11.11
In OS 11.11, SAM only managed to configure a default route.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 10:28 PM
08-15-2004 10:28 PM
Re: setup static routes on HPUX 11.11
after modyfing /etc/rc.config.d/netconf
you must only run:
/sbin/init.d/net start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2004 11:54 PM
08-15-2004 11:54 PM
Re: setup static routes on HPUX 11.11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2004 08:55 PM
08-16-2004 08:55 PM
Re: setup static routes on HPUX 11.11
For the default route, you can use the route command like this :
route add default x.y.z.t 1
where x.y.z.t is your gateway address.
Or put inside the /etc/rc.config.d/netconf something like :
ROUTE_DESTINATION[1]="default"
ROUTE_MASK[1]=""
ROUTE_GATEWAY[1]=x.y.z.t
ROUTE_COUNT[1]=1
For other static route, just put a valid address of a host or network, instead of "default".
Olivier.