您的位置:首页 > 新闻 > 会展 > 网络编程:常用网络测试工具

网络编程:常用网络测试工具

2024/12/24 10:44:03 来源:https://blog.csdn.net/weixin_71751116/article/details/140317115  浏览:    关键词:网络编程:常用网络测试工具

telnet  netstat  ping  arp   wireshark(网络抓包工具)  tcpdump
ssh2 
secure crt ——软件工具
sudo ufw disable
sudo apt-get install openssh-server openssh-client  //两个命令敲完 得重启

sudo apt-get install wireshark

1、telnet

 远程登录工具,默认都是系统安装。
    
    使用格式: telnet ip地址  端口
           eg: telnet 192.168.1.1  8888
    注意:如果没有写端口,则默认登录23 号端口。

2、netstat  

测试查看网络端口使用情况
    netstat -anp 
    netstat -n  ===>列出当前所有网络端口使用情况
    netstat -n -t  ===>列出所有TCP通信的端口信息
    netstat -n -u  ===>列出所有UDP通信的端口信息

    netstat -n -i   ===>列出默认接口上的通信信息
    netstat -lnp |grep 8888  ===>查看指定端口上的通信详情

3、ping 命令  

测试网路的联通状况 
        ping ip地址
        ping 域名

4、arp 地址解析命令

        arp -an  ===>列出当前主机的地址ARP表
        arp -d  ip地址

5、抓包工具  

    tcp.port == 50000 && tcp.ip  == 192.168.0.183
    5.1 wireshark  ==>可视化界面
    tcpdump 
        过滤规则:
        1)根据ip地址过滤:ip.src == x.x.x.x
                                         ip.dst == x.x.x.x
        2)根据端口过滤:tcp.srcport == xx;
                                       tcp.dstport == xx;
                                       udp.srcport == xx;
                                       udp.dstport == xx;
        3)根据协议类型过滤:
                        tcp   udp  icmp .....
        4)任意组合以上条件抓包:
                如果与的关系:  and
            ip.src == 192.168.1.100 and tcp.dstport == 9999
                如果或关系 :   or
            ip.src == 192.168.1.100 or ip.dst == 192.168.1.102
            
            tcp host 192.168.1.100

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com