C# 检查网络通畅

Posted 澜貓

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 检查网络通畅相关的知识,希望对你有一定的参考价值。

public static bool PingServer(string ipOrHostName)
         {
             try
             {
                 Ping ping = new Ping();

                 PingOptions pingOptions = new PingOptions();

                 pingOptions.DontFragment = true;

                 string data = "";

                 byte[] buffer = Encoding.UTF8.GetBytes(data);

                 int timeout = 120;

                 PingReply reply = ping.Send(ipOrHostName, timeout, buffer, pingOptions);

                 string result = reply.Status.ToString();

                 if (result == "Success")
                 {
                     return true;
                 }
                 else
                 {
                     return false;
                 }
             }
             catch (Exception)
             {
                 return false;
             }
         }

以上是关于C# 检查网络通畅的主要内容,如果未能解决你的问题,请参考以下文章

SSHD远程连接排错流程

android——判断网络状态

linux网络不通,如何解决

C#通过socket判断FTP服务器是否通畅并判断用户名密码是否正确

ubuntu的网络配置

如何设置虚拟化的centos内外网络通畅