如何使用抓包工具抓包,分析日志。

grep ftp /etc/services

查看监听端口的状态

netstat

开启httpd服务器

systemctl start httpd

查看网卡物理连接是否正常

mii-tool eno16777736

设置网卡参数的命令

ethtool eno16777736

systemctl restart NetworkManager  开启服务

route -n  查看网关

在服务端

tcpdump port 22 -c 3 -n -S -i eno16777736

yum -y install wirshark

创建一个保存抓包信息的文件

touch a.txt

执行抓包命令

tshark -w a.txt -i eno16777736

查看抓包信息

tshark -r a.txt





  


你可能感兴趣的:(linux运维)