- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dynamic route table entries
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-07-2002 09:42 PM
08-07-2002 09:42 PM
dynamic route table entries
I am trying to figure out what is causing this event to occur. From what I have read the card is not getting ICMP redirects as the flags on the route entries are just UGH not UGHD any ideas what it would be ?
Thanks
Steph
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2002 10:43 PM
08-07-2002 10:43 PM
Re: dynamic route table entries
Well , how to start , there are only 2 ways of getting 'real' dynamic updates in the routing table , both will always end up with a D-flag , the first being a real ICMP redirect from a routing device the second being initiated by a routing protocol like RIP or OSPF , for this last case you should have GATED running on the system , check this out in /etc/rc.config.d/netconf
look for a parameter called GATED[0]=1 if it is there and you are sure you dont need anything like rip or ospf just put it to 0 and restart the system ... any other entry in the routing table that commes in there is for sure not 'Dynamic' in the real sence of the word it must be an actual manipulation of the system by either an application setting an entry in there (script ???) or a user creating a route , those 3 entries ar HOST routes visible by the UGH flags as would a normal icmp redirect be without the D flag , I would have a good look at any program that might run on a crontab that could execute a route add command .. by the way is it always the same IP's that are added ??? that could also point to a user adding things manually or a scritp being executed , is this thing happening with fixed intervals ?? that could point to a script executeing every (timeframe)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2002 11:05 PM
08-07-2002 11:05 PM
Re: dynamic route table entries
No GATED is running on the box. /etc/rc.config.d/netconf displays GATED=0 and there is no other instance of it in my startup scripts.
The route entries are different every time, appear at irregular intervals and site history (the boss) tells me that this problem has been occurring for a number of years and occurred on the previous K class server they had here. The 2 times its happened since Ive been on site all the additional entries are within the same subnet but each time the subnet is different.
Only user connections are via Oracle Forms apart from sys admins and dba's, only crontabs are root and oracle, no 'route add' commands in any of it.
I have a really helpful networking guy, so if there's any pointers you can give me to get him to look for from the switch side that would be helpful too.
Steph
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2002 11:44 PM
08-07-2002 11:44 PM
Re: dynamic route table entries
what is bothering me is the missing D flag , it clearly ppijnt to a non-dynamic entry , in allmy years of UX networking support I've never seen a dynamic route without a D-flag , I'm willing to believewe still have some sort of update mesage sent and the system 'forgetting the fla' but that would be really exceptional , besides the problem appeared on the other machine so probably it isn't system dependent but appliaction or external , the irregular nature makes it more difficult , I looked on hp-ux to see about deactivation ICMP redirect reaction but that isn't possible , a service request is opened for it but as ICMP redirect is integral and usefull function of hpo-ux it probably wont be altered , it is as far as i know possible to deactivate the sending icmp redirect on routers however , unforrtunately I don't know everything about cisco or other type routers so I just cant give commands or parametyers .. if I where the network admin , I'de start looking seeing if there is a correlation or delay before the problem reoccurs and try to capture packets sent to the server ona logging server filtering out ICMP type data and checking this log daat after a change was noted , perhaps we see a redirect anyway
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 05:16 AM
08-09-2002 05:16 AM
Re: dynamic route table entries
logs ICMP messages to the syslog. I don't know if it
is available from the porting
center. If not you can get
the source from the Debian
site www.debian.org.
This should indicate if you are getting any redirects.
You may also want to wrap all
commands that can change the
routing tables with a script
that records the parameters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 10:21 AM
08-09-2002 10:21 AM
Re: dynamic route table entries
is there anything special about the IP addresses? are they addresses belonging to any of your systems? what if anything runs on those systems?
the debian ICMP program may not compile out of the box on UX, but you could do something a bit cruder. download the latest version of libpcap and tcpdump from http://www.tcpdump.org/ and then run separate tcpdumps against your lan0 and lan1, with the tcpdump filter expression of "icmp" (I think that will show all ICMP traffic you receive). alternatively, you could turn-on nettl - i'm not sure if it can filter while collecting or only after.
another thing you could do is run a frequent cron/at job that deletes the routes that have "UGH" flags and then see what breaks :)