如何使用tshark抓包分析http请求

wireshark 在linux下也可以安装 yum install -y wireshark

抓包分析http请求: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"

你可能感兴趣的:(linux,抓包,tshark)