- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Routing Tables
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
05-19-2000 06:54 AM
05-19-2000 06:54 AM
What in version 11 did they replace 'rc.net' with? Where can i find this information?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2000 07:13 AM
05-19-2000 07:13 AM
Re: Routing Tables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2000 10:19 AM
05-19-2000 10:19 AM
Re: Routing Tables
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2000 10:26 AM
05-19-2000 10:26 AM
Re: Routing Tables
If i want a permanent routing table, what file is the "static" information stored?
I thought the /etc/rc.config.d/netconf was a definition file, which would be different than the rc.net file. True?
Any insight at all on this, do all systems have an 'rc.net' file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2000 06:30 AM
05-22-2000 06:30 AM
Solutioni think the /etc/rc.config.d/netconf is the right place for adding static routes.
Within this file there is a default entry that looks like:
ROUTE_DESTINATION[0]="default"
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]="192.1.2.3"
ROUTE_COUNT[0]="0"
ROUTE_ARGS[0]=""
So if you have additional routes just copy these five lines and increment the index number in the brackets like:
ROUTE_DESTINATION[1]="net 192.2.3.0"
ROUTE_MASK[1]="255.255.255.0"
ROUTE_GATEWAY[1]="192.2.3.1"
ROUTE_COUNT[1]="1"
ROUTE_ARGS[1]=""
The example above would do:
route add net 192.2.3.0 netmask 255.255.255.0 192.2.3.1 1
where the Network is 192.2.3.0, the Netmask 255.255.255.0, the gateway for that net is 192.2.3.1 and the metric value is 1 (which means that the gateway is outside your box)
Regards
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2000 09:19 AM
05-22-2000 09:19 AM
Re: Routing Tables
#netstat -rn
Berlene
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2000 12:21 PM
05-23-2000 12:21 PM
Re: Routing Tables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2000 09:31 PM
05-23-2000 09:31 PM