Clumsy介绍

一个弱网测试软件,绿色版(需管理员权限),支持Win7/Win8/Win8.1/Win10,可以模拟网络的丢包,延迟,重复,乱序,损坏(数据包)等情况。可以做到针对性得模拟用户在弱网条件(如2G网络或是连上了一个信号很差的Wi-Fi等)下的使用体验,做到软件对网络恶劣条件下的debug。

我为什么用clumsy

Fiddler要调整参数需要修改脚本文件,比较麻烦;微软的Standalone Network Emulator Tool只能模拟一些特定参数,于是乎就用上了Clumsy。

项目地址

jagt原版:https://github.com/jagt/clumsy

skywind3000修改版(添加了BandWidth(带宽)限制功能):https://github.com/skywind3000/clumsy

使用手册

英文原版:http://jagt.github.io/clumsy/manual.html

中文说明版: 21th-1.png

过滤器运算符说明(英文)

https://reqrypt.org/windivert-doc.html#filter_language

常用过滤器

过滤器 说明
inbound or outbound 所有流量
inbound 入站流量
outbound 出站流量
ipv6 all 所有iPv6流量
tcp and (tcp.DstPort == 80) 所有http流量(TCP Port 80)
tcp and (tcp.DstPort == 443) 所有https流量(TCP Port 443)