vote up 3 vote down star
1

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.

flag

6 Answers

vote up 4 vote down check

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++:

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

This one solves the ping problem without using third party

http://www.aspnettutorials.com/tutorials/network/net-ping-aspnet2-csharp.aspx

link|flag
vote up 1 vote down

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

link|flag
vote up 3 vote down

For the ping part, take a look at the Ping class on MSDN.

link|flag
vote up 0 vote down

I would start looking for them in the System.Net namespace

link|flag

Your Answer

Get an OpenID
or

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