欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux之小技巧wireshark

程序员文章站 2022-05-31 11:14:02
...

 抓取web服务器

 tshark -n -t a -R http.request -T fields -e "frame.time" -e "ip.src" -e "http.host" -e "http.request.method" -e "http.request.uri"

 抓取eno16777736网卡mysql的查询,默认是3306

[[email protected] dir6]# tshark -n -i eno16777736 -R 'mysql.query' -T fields -e "ip.src" -e "mysql.query"

 抓取eno16777736网卡mysql的查询,若不是3306端口,是3307端口

[[email protected] dir6]# tshark -n -i eno16777736 -port 3307 -d tcp.port==3307,mysql -z "proto,colinfo,mysql.query,mysql.query"

 

相关标签: centos 网络抓包