- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Dynamic routing
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-11-2000 08:06 PM
тАО09-11-2000 08:06 PM
I then have to delete same before the real route can resume. Is there a way of stopping the system from building such dynamic routes (eg ; UGHD)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2000 10:09 PM
тАО09-11-2000 10:09 PM
Re: Dynamic routing
This is indeed a tricky sort of problem. Thing to look for;
1. ensure yourenot running gated (see /etc/rc.config.d/netconf)
2. Add static routes into the same netconf file instead of letting dynamic routes be established, this way the static routes will stay on your HP, even if the route actually drops.
3. If you do get dynamic routes being added flush the entire routing table with route -f and then add in static ones using route add.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2000 12:24 AM
тАО09-12-2000 12:24 AM
Solutionhttp://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x7e4b49c5ae73d4118fef0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2000 06:38 AM
тАО09-12-2000 06:38 AM
Re: Dynamic routing
You have a few choices here. You can turn off ICMP redirects on your routers or handle the change in the tables yourself either automatically or manually with some notification. Turning off ICMP redirects has its negative points as you can imagine. "Learning" routes is just what routers and level 3 switches are intended to do.
What I did was to write a script that will detect when a dynamic change is made in the routing table. This is evident by the "M" flag set when you run netstat -nr. Then I take action based on that notification.
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2000 10:10 AM
тАО09-12-2000 10:10 AM
Re: Dynamic routing
Also, what routing protocol.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2000 11:47 AM
тАО09-12-2000 11:47 AM
Re: Dynamic routing
Thanks for helping me understand this; particularly the previous discussion/link. One new awk script on its way ... cheers