मैं एक रूट किए गए एंड्रॉइड डिवाइस पर पैकेट लॉस का अनुकरण करना चाहता हूं, यह देखने के लिए कि विभिन्न स्तर वीडियो स्ट्रीमिंग गुणवत्ता को कैसे प्रभावित करते हैं। मैंने सफलता के बिना नेटम और 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".
क्या प्रारूप गलत है या क्या नेटम समर्थन को किसी तरह जोड़ना संभव है?
iptables :
# 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 में कोई अन्य विकल्प है?