When i send a ping to www.example.com, it goes around 4 hops: A -> B -> C -> www.example.com

I want to change it: A -> C -> www.example.com and if i receive an icmp reply, it'll return to another ip.

ping www.example.com

//my ip: 192.168.0.110

max of 30 hops:

  1. hops A
  2. hops B
  3. hops C
  4. www.example.com

// normail icmp request

// now i want to change it:

ping www.example.com

max 30 hops:

  1. hops A
  2. hops C
  3. www.example.com

// icmp reply returns to this ip: 192.168.0.120

How can i do it by C Sharp?

link|improve this question
Why do you want to do this? – BNL Nov 29 '11 at 13:17
is that even possible? this is determined by the machines/route settings of the connection. – NekoNova Nov 29 '11 at 13:18
Does this make sense? – oberfreak Nov 29 '11 at 13:19
feedback

closed as not a real question by LarsTech, drharris, VMAtm, casperOne Nov 29 '11 at 15:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

You can't (atleast not from C#) it's controlled by the routers and switches on the route.

link|improve this answer
feedback

Unless you have access to the router of your ISP over Border Gateway Protocol this is impossible. The routing is controlled by the routing table in the router between you an the target, this route might change at anytime.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.