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:
- hops A
- hops B
- hops C
- www.example.com
// normail icmp request
// now i want to change it:
ping www.example.com
max 30 hops:
- hops A
- hops C
- www.example.com
// icmp reply returns to this ip: 192.168.0.120
How can i do it by C Sharp?