linux – 在命令行中使用wireshark / tshark来忽略ssh连接

前端之家收集整理的这篇文章主要介绍了linux – 在命令行中使用wireshark / tshark来忽略ssh连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试通过查看数据包来调试一些,我想避免将所有SSH流量都发送到服务器.有没有办法忽略?

我尝试做类似tshark -f“port!22”之类的东西,但它在命令后停止了监听.

[root@vpn ~]# tshark -f "port !22"
tshark -f "port ls"
Running as user "root" and group "root". This could be dangerous.
Capturing on venet0
tshark: arptype 65535 not supported by libpcap - falling back to cooked socket.

tshark: Invalid capture filter: "port ls"!

That string isn't a valid capture filter (unknown port 'ls').
See the User's Guide for a description of the capture filter Syntax.
0 packets captured
[root@vpn ~]#

解决方法

tshark和tcpdump都使用pcap库,因此捕获过滤器使用 pcap-filter syntax.你想要的过滤器,如@tristan所说,“不是端口22”.您可以将此输入作为-f选项的带引号的字符串参数,或作为命令的不带引号的参数.以下命令是等效的:
# tshark -f "not port 22"
# tshark -- not port 22

tshark抱怨你上面命令的原因是你的shell(可能是Bash)在命令历史中将“!22”扩展为命令编号22,在本例中是“ls”. Bash documentation有更多关于历史扩张的信息.

原文链接:https://www.f2er.com/linux/397626.html

猜你在找的Linux相关文章