- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How do I keep new routes after reboot?
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
02-19-2003 10:32 AM
02-19-2003 10:32 AM
I've just recently added 8 new routes to 2 V class servers. We need these routes to come up after reboot. I understand I should add these to netconf, can someone tell me how the entires should look if the "route A" was:
Network: 145.14.0.0
Netmask: 255.255.0.0
Gateway: 141.30.131.1
and "Route B" was
Network: 145.15.0.0
Netmask: 255.255.0.0
Gateway: 141.30.131.1
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2003 10:42 AM
02-19-2003 10:42 AM
SolutionROUTE_MASK[0]="255.255.0.0"
ROUTE_GATEWAY[0]=141.30.131.1
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""
ROUTE_DESTINATION[0]=145.15.0.0
ROUTE_MASK[0]="255.255.0.0"
ROUTE_GATEWAY[0]=141.30.131.1
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""
I think that ought to do it.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2003 10:46 AM
02-19-2003 10:46 AM
Re: How do I keep new routes after reboot?
Follow what Pete mentioned. But just make sure unique [index] is followed. For ex., for 145.14.0.0 use ROUTE_DESTINATION[1] etc., for 145.15.0.0 use ROUTE_DESTINATION[2] etc.,
You may seee ROUTE_DESINATION[0] already reserved for default route.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2003 10:50 AM
02-19-2003 10:50 AM
Re: How do I keep new routes after reboot?
And of course when you are done, make sure you take an ignite backup!
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2003 10:57 AM
02-19-2003 10:57 AM
Re: How do I keep new routes after reboot?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 03:57 AM
02-20-2003 03:57 AM
Re: How do I keep new routes after reboot?
I've always tended to use a custom script to add routes once the network has started - we can then add entries and run any number of times without having to stop and restart networking.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2003 04:19 AM
02-20-2003 04:19 AM
Re: How do I keep new routes after reboot?
As Sri says Index should increment by 1 for each route entry