- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dynamic route add and where it is stored
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-18-2006 12:15 AM
05-18-2006 12:15 AM
can anyone help to add route(dynamic) in server and where it is sotred because of we can edit that file directly
thanks
siva baskaran
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 12:18 AM
05-18-2006 12:18 AM
Re: dynamic route add and where it is stored
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 12:26 AM
05-18-2006 12:26 AM
Re: dynamic route add and where it is stored
i needed dynamic routing there is chance to change, so please let explain abt dynamic route add
thanks
siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 12:27 AM
05-18-2006 12:27 AM
Solutione.g.
route add 10.221.40.0 netmask 255.255.255.0 10.221.53.250
man route for more understanding.
This will be dynamic and not valid across reboots. So add entry for the route to /etc/rc.config.d/netconf
ROUTE_DESTINATION[1]="10.221.40.0"
ROUTE_MASK[1]="255.255.255.0"
ROUTE_GATEWAY[1]="10.221.53.250"
ROUTE_COUNT[1]="1
The number in the [] should be the next unused from the netconf file for ROUTE_DESTINATION.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 12:41 AM
05-18-2006 12:41 AM
Re: dynamic route add and where it is stored
route add & route delete are the one that you can use in dynamic.
to check you routing table
netstat -nr
dynamic routes are not stored in any file, this is a property of IP (Check RFC sites for more information) either you can add or delete thats it.
see the link, hope that will help
Chan
http://www.sangoma.com/main/support/tutorials/tcpip
http://www.faqs.org/rfcs/rfc1716.html
http://rfc.net/rfc-index.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 01:27 PM
05-18-2006 01:27 PM
Re: dynamic route add and where it is stored
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2006 06:29 PM
06-02-2006 06:29 PM
Re: dynamic route add and where it is stored
route command enables you do add static routes. If you want to setup dynamic routing you have to look for tools that provide BGP, RIP etc.
-logu