网络测试

Posted lhlong

tags:

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

 

 

 

        /// <summary>
        /// 网络测试
        /// </summary>
        private void TestNet( )
         
            //远程服务器IP
            string ipStr = "192.168.0.8";
            //构造Ping实例
            Ping pingSender = new Ping();
            //Ping 选项设置
            PingOptions options = new PingOptions();
            options.DontFragment = true;
            //测试数据
            string data = "";
            byte[] buffer = Encoding.ASCII.GetBytes(data);
            //设置超时时间
            int timeout = 120;
            //调用同步 send 方法发送数据,将返回结果保存至PingReply实例
            PingReply reply = pingSender.Send(ipStr, timeout, buffer, options);


            string lst_PingResult = string.Empty;
            if (reply.Status == IPStatus.Success)
            
                lst_PingResult = lst_PingResult+ ("答复的主机地址:" + reply.Address.ToString())+"\r\n";
                lst_PingResult = lst_PingResult + ("往返时间:" + reply.RoundtripTime) + "\r\n";
                lst_PingResult = lst_PingResult + ("生存时间(TTL):" + reply.Options.Ttl) + "\r\n";
                lst_PingResult = lst_PingResult + ("是否控制数据包的分段:" + reply.Options.DontFragment) + "\r\n";
                lst_PingResult = lst_PingResult + ("缓冲区大小:" + reply.Buffer.Length) + "\r\n";
            ;
        

 

以上是关于网络测试的主要内容,如果未能解决你的问题,请参考以下文章

用Iperf3测试网络带宽和丢包

渗透测试会用到哪些工具?网络安全基础

APP性能测试—网络测试

如何对IDC机房网络带宽进行测试

百万公众网络测试怎么登录?

app专项测试:app弱网测试(网络测试流程)