我想在扎根的Android设备上模拟数据包丢失,以了解不同级别如何影响视频流质量。我尝试过netem和iptables,但没有成功:
# tc qdisc change dev rmnet0 root netem loss 0.1%
tc qdisc change dev rmnet0 root netem loss 0.1%
Android does not support qdisc 'netem'
Garbage instead of arguments "loss ...". Try "tc qdisc help".
格式错误还是可以通过某种方式添加netem支持?
# iptables -A INPUT -m statistic --mode random --probability 0.01 -j DROP
iptables -A INPUT -m statistic --mode random --probability 0.01 -j DROP
iptables v1.3.7: Couldn't find match `statistic'
Try `iptables -h' or 'iptables --help' for more information.
Android中还有其他选择吗?
3
好问题!我的想法:作为替代方案,如果您的路由器具有服务质量或类似功能,也许可以连接到wifi路由器并在该位置限制连接?
—
布莱恩丹尼
有点相关,这里是如何在已扎根的Android设备上捕获数据包:vbsteven.be/blog/…–
—
Bryan Denny