TCP/IP测试开发工具收录
- 网络抓包工具smsniff 介绍看这里 http://www.oschina.net/p/smartsniff
至于使用:简单体验了一下,足够轻量,Version 2.08 支持过滤器,不过他的过滤器可不是WireShark的那个样子。
- Display only packets with remote tcp port 80 (Web sites):
include:remote:tcp:80include:remote:tcp:80
- Display only packets with remote tcp port 80 (Web sites) and udp port 53 (DNS):
include:remote:udp:53
include:remote:all:192.168.0.1-192.168.0.100
- Display only packets originated from the following IP address range: 192.168.0.1 192.168.0.100:
- Display only TCP and UDP packets that use the following port range: 53 - 139:
include:remote:tcpudp:53-139
- Filter most BitTorrent packets (port 6881):
exclude:both:tcpupd:6881
例如:使用Ctrl+F8打开过滤窗口
- Filter all ICMP packets (Ping/Traceroute activity): exclude:both:icmp
即可。