如何检查特定IP地址是否连接到网络

时间:2016-06-25 18:05:37

标签: c# .net network-programming wifi

我想创建一个应用程序来查找网络上的特定IP地址是否在线。我已经知道IP了。我对C#很陌生,但想知道是否有人能给我一个简单的解决方案。感谢。

1 个答案:

答案 0 :(得分:1)

Ping ping = new Ping ();
IPAddress address = IPAddress.Parse("000.000.000.000");
PingReply pong = pingSender.Send(address);

pong对象包含有关成功与否的信息。

if (pong.Status == IPStatus.Success)
{
  // your machine at address is up and responding
}

使用此

的完整程序
using System;
using System.Net;
using System.Net.NetworkInformation;

public class Program
{
    public static void Main()
    {
        Ping ping = new Ping();
        //change the following ip variable into the ip adress you are looking for
        string ip = " ";
        IPAddress address = IPAddress.Parse(ip);
        PingReply pong = ping.Send(address);
        if (pong.Status == IPStatus.Success)
        {
            Console.WriteLine(ip + " is up and running.");
        }
    }
}