您好,登錄后才能下訂單哦!
public static void port_check(string ip)
{
bool tcpListen = false;
bool udpListen = false;//設定端口狀態標識位
string ip_str = ip;
System.Net.IPAddress myIpAddress = IPAddress.Parse(ip_str);
System.Net.IPEndPoint myIpEndPoint = new IPEndPoint(myIpAddress, 80);
try
{
System.Net.Sockets.TcpClient tcpClient = new TcpClient();
tcpClient.Connect(myIpEndPoint);//對遠程計算機的指定端口提出TCP連接請求
tcpListen = true;
}
catch { }
try
{
System.Net.Sockets.UdpClient udpClient = new UdpClient();
udpClient.Connect(myIpEndPoint);//對遠程計算機的指定端口提出UDP連接請求
udpListen = true;
}
catch { }
if (tcpListen == false && udpListen == false)
{
Console.WriteLine("80端口關閉!", "提示");
}
else
{
Console.WriteLine("80端口打開!", "提示");
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。