Does anyone have C# code handy for doing a ping and traceroute to a target computer? I am looking for a pure code solution, not what I'm doing now, which is invoking the ping.exe and tracert.exe program and parsing the output. I would like something more robust.
|
feedback
|
|
Although the Base Class Library includes Ping, the BCL does not include any tracert functionality. However, a quick search reveals two open-source attempts, the first in C# the second in C++: | |||
|
feedback
|
|
Given that I had to write a TraceRoute class today I figured I might as well share the source code.
And a VB version for anyone that wants/needs it
| ||||
|
feedback
|
|
For the ping part, take a look at the Ping class on MSDN. | |||
feedback
|
|
Here is how to implemente traceoute http://coding.infoconex.com/post/2009/01/C-Traceroute-using-net-framework.aspx and another how to implement Ping. http://coding.infoconex.com/post/2009/01/C-Ping-and-Traceroute.aspx The above replicates the same behaviour as windows ping and traceroute and is very simple to implement. | |||
|
feedback
|
|
Have a look at - http://www.codeproject.com/KB/IP/Tracert-ping.aspx If you can afford to pay, the Dart networking widgets are pretty good: http://www.dart.com/ctl_tracenet.aspx There's another freebie implementation here: http://www.digigrupp.com/ping/ and here http://www.mltek.co.uk/traceclass.aspx | |||
|
feedback
|
|
This one solves the ping problem without using third party http://www.aspnettutorials.com/tutorials/network/net-ping-aspnet2-csharp.aspx | |||
|
feedback
|