我需要捕获长度等于 16 字节的数据包
我离得越近是这样的:
tcpdump -ni lo -ttt dst port 1337 and greater 16
如果我添加其他过滤器以符合我的意愿:
tcpdump -ni lo -ttt dst port 1337 and greater 16 and not greater 17
tcpdump -ni lo -ttt dst port 1337 and \(greater 16 and not greater 17\)
tcpdump -ni lo -ttt dst port 1337 and greater 16 and less 16
它根本不显示任何数据包。
虽然,使用:
tcpdump -ni lo -ttt dst port 1337 and less 16
似乎也不起作用,如果较少的过滤器起作用,我实际上是在徘徊......
欢迎任何帮助:)