- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Traceroute Problem
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
тАО03-04-2002 09:39 PM
тАО03-04-2002 09:39 PM
Traceroute Problem
traceroute a.b.c.d fails but ping a.b.c.d works fine. why is that ?
Regards
Ramu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2002 09:57 PM
тАО03-04-2002 09:57 PM
Re: Traceroute Problem
Alike most Unixes, HP-UX uses UDP packets (to connect to high UDP ports in the range of 33000+ so as to acquire port-unreachable return messages) to perform the traceroute. It does not use ICMP echo requests which is what is used by Windows. The underlying formula is the same, that is using TTLs to identify routes.
This explains why your ping (which uses ICMP echo requests and returning replies) works but traceroute (which uses UDP in Unix) didn't work. It can be caused by an intermediate filter, either a network-based firewall or host-based firewall which is filtering off connection attempts to UDP high-ports on the destination server.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2002 10:06 PM
тАО03-04-2002 10:06 PM
Re: Traceroute Problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-05-2002 02:43 AM
тАО03-05-2002 02:43 AM
Re: Traceroute Problem
You could use ping -o.
This inserts an IP record route option in the outgoing packets and provides info about the route taken.
HtH,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 10:24 AM
тАО03-06-2002 10:24 AM
Re: Traceroute Problem
The ping -o works fine.
Any Idea.
Regards
Ramu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 10:44 AM
тАО03-06-2002 10:44 AM
Re: Traceroute Problem
Also be advised that firewalls can be configured to filter all the way down to single IPs.
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 10:51 AM
тАО03-06-2002 10:51 AM
Re: Traceroute Problem
Does it make ANY hops at all?
If so what is the last good hop?
Do an nslookup of the last good hop IP - if it's a firewall then UDP is being blocked I would suspect.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 11:02 AM
тАО03-06-2002 11:02 AM
Re: Traceroute Problem
The last hop on the traceroute is a router. But when i do a traceroute to a machine a1.b1.c1.d1, which is on the same subnet as a.b.c.d, the traceroute works fine.
Why is that ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 03:25 PM
тАО03-06-2002 03:25 PM
Re: Traceroute Problem
What kind of router is it?
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 06:23 PM
тАО03-06-2002 06:23 PM
Re: Traceroute Problem
See the ndd command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2002 09:54 AM
тАО03-07-2002 09:54 AM
Re: Traceroute Problem
The router is Cisco 4000 series.
Does traceroute use UPD or ICMP ?
Regards
Ramu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2002 01:06 PM
тАО03-07-2002 01:06 PM
Re: Traceroute Problem
sh ip int b
which will tell you which interface is connected to a.b.c.d as well as which interface replied to your traceroute.
now do
sh run
and look for the a.b.c.x interface. See if you see something like
ip access-group x in (or out).
If you do, go down in the sh run until you see:
access-list x ...
see if any of these block UDP or ICMP.
If you want to copy them and post them here or send them too me at rkinner@att.net I'll be glad to look at them.
While you are on the router, try:
trace a.b.c.d
and see if it works from there. Cisco uses a UDP packet to port 33434.
Of course if the device we are trying to trace is actually listening on port 33434 then the trace will fail since it won't send back the message that trace expects.
If a.b.c.d supports netstat try netstat -a and see what ports it is listening on.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2002 05:53 PM
тАО03-08-2002 05:53 PM
Re: Traceroute Problem
Traceroute on Unixes use UDP requests and TTL expiration to receive ICMP time-exceeded messages. Simplistic representation:
Src - UDP -> Destn
Src <- ICMP time-exceeded - Intermediate hop
Traceroute on Windows use ICMP echo requests and TTL expiration to receive ICMP time-exceeded messages. Simplistic representation:
Src - ICMP echo -> Destn
Src <- ICMP time-exceeded - Intermediate hop
Both utilises the TTL field in IP packets to work, incrementing the TTL count each time until the destination is reached.
Hope this helps. Regards.
Steven Sim Kok Leong