- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Default Router Trouble
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
10-02-2001 09:13 AM
10-02-2001 09:13 AM
Default Router Trouble
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:19 AM
10-02-2001 09:19 AM
Re: Default Router Trouble
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:27 AM
10-02-2001 09:27 AM
Re: Default Router Trouble
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:37 AM
10-02-2001 09:37 AM
Re: Default Router Trouble
Are you using /etc/resolv.conf ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:40 AM
10-02-2001 09:40 AM
Re: Default Router Trouble
It has the correct name server in there and everything. No I don't have duplicate IP's. The machine did not have this problem when it was running 10.20. Only after I installed 11.00 did this show up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:46 AM
10-02-2001 09:46 AM
Re: Default Router Trouble
2. patch the system
3. check if ping works to the router's IP address so you don't attempt to resolve the name
It sounds like you need a patch to me, though. linkloop should help identify if you've got a network card problem or a software problem. My guess is that you'll find that it's a software problem and bringing the system up to current patch levels will fix it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:49 AM
10-02-2001 09:49 AM
Re: Default Router Trouble
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 10:00 AM
10-02-2001 10:00 AM
Re: Default Router Trouble
If you are covered by HP software contract you can do a patch analysis on your system, create a patch budle and download directly from the hp web-site.
That is better than patching your system using the quaterly patch bundle.
Follow the link below to reach the customised patch bundle section on ITRC.
http://us-support.external.hp.com/wps/bin/doc.pl/sid=06a1af85135297982b
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 10:46 AM
10-02-2001 10:46 AM
Re: Default Router Trouble
What does your routing table look like? Typically, you can easily identify a modified route when you see an "M" in the flag field of the route as follows:
# netstat -nr
default 204.104.63.30 UGM 42 3086056 lan0 1500
M means modified. This usually happens to dynamic routes. To be honest, I have never seen this happen to static routes but its a thought.
You can turn on logging on your router to check if ICMP redirects are being generated. If they are, you do have the option to turn it off on your router if its doing more harm than good.
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 02:48 PM
10-02-2001 02:48 PM
Re: Default Router Trouble
HPUX 11.00 supports multiple gateways using route add. It will use default first and check to see if the default router is available by sending it a ping. If it doesn't get a reply, it will consider the route dead and move to the next gateway defined. If there are no other gateways defined then it will shut down all outbound traffic. The fix is to make sure that your router responds to ICMP requests or to run this command to turn probing off 'ndd -set /dev/ip ip_ire_gw_probe 0'
then add an entry in /etc/rc.conf.d/nddconf to turn the probing off at each reboot. Then re-add the route and everything works