vote up 2 vote down star
1

What is the easiest way to check if a computer is alive and responding (say in ping/NetBios)? I'd like a deterministic method that I can time-limit.

One solution is simple access the share (File.GetDirectories(@"\compname")) in a separate thread, and kill the thread if it takes too long.

flag

63% accept rate
What port do you need to connect to? Given firewalls -- network-wide and per-system -- a system could easily be available but seem to be not responding if you pick the wrong port to try. – tvanfosson Dec 7 '08 at 13:38
BTW, I'd just like to say that when a network is involved, no "deterministic" method can exist by definition. en.wikipedia.org/wiki/Deterministic_algorithm/… – ceretullis Dec 7 '08 at 17:40

2 Answers

vote up 5 vote down check

Easy! Use System.Net.NetworkInformation namespace's ping facility!

http://msdn.microsoft.com/en-us/library/system.net.networkinformation.ping.aspx

link|flag
For security reason PING is one of the services that blocked at our network boundary -- along with a variety of other ports. If available this is a good mechanism, but you'd have to know if it was going to work first and that it won't be turned off in the future. – tvanfosson Dec 7 '08 at 13:51
In fact, this can happen to any service. Therefore, if you need reliable way to reach a service on a remote computer, you should probably consider checking it at a higher level protocol (the protocol you're specifically relying on). – Mehrdad Afshari Dec 7 '08 at 14:03
@Mehrdad - Agreed. – tvanfosson Dec 7 '08 at 14:14
vote up 1 vote down

To check a specific TCP port (myPort) on a known server, use the following snippet. You can catch the System.Net.Sockets.SocketException exception to indicate non available port.

using System.Net;
using System.Net.Sockets;
...

IPHostEntry myHostEntry = Dns.GetHostByName("myserver");
IPEndPoint host = new IPEndPoint(myHostEntry.AddressList[0], myPort);

Socket s = new Socket(AddressFamily.InterNetwork,
    SocketType.Stream, ProtocolType.Tcp);
s.Connect(host);

Further, specialized, checks can try IO with timeouts on the socket.

link|flag

Your Answer

Get an OpenID
or

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