Questions tagged [traceroute]

traceroute traces the route taken by packets over a TCP/IP network. It is used as a network debugging tool to show where packets are being lost along the route.

268 questions
9
votes
1 answer

Is there a way to trace the "real" route of a packet if i am behind a VPN?

I would like to find a way to have as response the real route, tracing a server, when I am behind a VPN. For example the first hop tracing stackoverflow.com from my pc is my router. When I dial a VPN then the first hope is the vpn server. My…
Socios Socials
  • 101
  • 1
  • 1
  • 3
9
votes
2 answers

How to traceroute in adb shell?

I have a rooted device, I type "su" in adb shell, then I try to traceroute. It says "traceroute: not found". I can't find traceroute in any bin folders. Thanks for any hints.
user289463
  • 2,804
  • 3
  • 20
  • 21
9
votes
1 answer

Softlayer ISP Blocking Network dropping out when connecting to wp_remote_post Wordpress

We are really looking for help from the community we are getting issues where our clients website can no longer reach my api and timeout with. Connection timed out after 10001 milliseconds. We have contacted our hosts media temple and they cant…
user1503606
  • 3,872
  • 13
  • 44
  • 78
9
votes
1 answer

How to programmatically find the external IP address of a device without using external host?

When I read the IP address of the device I always get the local IP address. I use the following code snippet to do that. public String getIpAddress() { try { for (Enumeration en =…
Durai Amuthan.H
  • 31,670
  • 10
  • 160
  • 241
9
votes
2 answers

Trace Routing for a Certain port

Before saying anything let me tell you that i am not well educated int networks related subjects. I am a software developer and I have written and exposed a Service on HTTPS at port 8000. Now i want to know that if there is any kind of software…
Mubashar
  • 12,300
  • 11
  • 66
  • 95
8
votes
0 answers

Can you do a Ping or traceroute command on iPhone?

Odd question, I know I can do this in OS X Objective C, but can you run a ping against an IP or URL on the iPhone? Is the framework there to support it? Same with doing a traceroute.
mootymoots
  • 4,545
  • 9
  • 46
  • 74
8
votes
2 answers

Traceroute printing asterisk symbol

I am trying to use traceroute unix program to find the route to a host. I tried traceroute www.google.com and I end up seeing only asterisks printed. Examples on the internet uses the same command and it seems to work well. I tried increasing the…
NPE
  • 1,401
  • 4
  • 18
  • 31
7
votes
2 answers

How to ICMPs and traceroutes in Java

Java does not have primitives for ICMPs and traceroute. How to overcome this? Basically I'm building code that should run in *nix and Windows, and need a piece of code that will run in both platforms.
Ricardo
  • 1,391
  • 4
  • 15
  • 24
6
votes
5 answers

How is it possible to run a traceroute-like program without needing root privileges?

I have seen another program provide traceroute functionality within it but without needing root (superuser) privileges? I've always assumed that raw sockets need to be root, but is there some other way? (I think somebody mentioned "supertrace" or…
brian
  • 61
  • 2
  • 4
6
votes
1 answer

can't traceroute from linux docker in windows host

I have installed the 18.04 ubuntu docker image, and in it, I installed the following packages: apt-get install traceroute apt-get install net-tools apt-get install iputils-ping apt-get install netbase But when I use traceroute, all packets…
user2468170
  • 1,234
  • 2
  • 15
  • 19
6
votes
1 answer

How to Ping for IPv4 only?

I know my router's IPv4 address. But when I Ping using TTL = 1 I don't get that IP. Rather, I get its IPv6 address. (I know of address.MapToIPv4() but that's only for IPv4s that were changed into IPv6s.) So how do I ping for IPv4 only (like…
ispiro
  • 26,556
  • 38
  • 136
  • 291
6
votes
3 answers

Writing a basic traceroute script in C

I have to write a trceroute script but I'm not sure if my attempts are correct. Right now I'm doing it like that (please correct me if I'm doing wrong or clumsy): Got an struct for ip- and udpheader A checksum function Opening 2 sockets: One for…
d.hill
  • 669
  • 3
  • 9
  • 16
6
votes
0 answers

iOS - Traceroute command

I am looking for a way to use traceroute command in iOS application. This can be done since iNet Tools app can do that. I am aware of this questions in SA. But other than that I wasn't able to find a hint how to accomplish that. Any help would be…
BlackM
  • 3,927
  • 8
  • 39
  • 69
6
votes
3 answers

Traceroute on android

I am a beginner on android platform, and I want to build a tracerouting app. So these are my queries: Is it possible to make such an application in Android? if possible then guide me the way that I follow. Does Android support low-level…
PiyushMishra
  • 5,743
  • 6
  • 37
  • 57
5
votes
1 answer

How to show path a curl request takes?

I have a setup where request go from servers x->y->z where y can be seen as a reverse proxy. When I make a curl to y, I want to be able to see the request go from x to y to z. This is something similar to what traceroute would do. How can I should…
imagineerThat
  • 5,293
  • 7
  • 42
  • 78
1
2
3
17 18