优先级上传优先级,使用 htb qdiscs 为 slingbox 提供高优先级
我正在尝试使用以下命令将 slingbox 连接设置为 1:20 类:
iptables -t mangle -A to-cable -p tcp --dport 5001 -j CLASSIFY --set-class 1:20 iptables -t mangle -A to-cable -p tcp --sport 5001 -j CLASSIFY --set-class 1:20
我还有其他与 ssh、http 和新闻相关的类命令。
我使用命令“tc -s class ls dev eth0”查看正在发生的情况,即使我连接到 slingbox,也没有通过 1:20 类进行数据传输。 其余端口(ssh、http、news)通过类正确转发。
有没有更好的方法来捕捉 slingbox 数据传输?
I am trying to set slingbox connection to class 1:20 using the following commands:
iptables -t mangle -A to-cable -p tcp --dport 5001 -j CLASSIFY --set-class 1:20
iptables -t mangle -A to-cable -p tcp --sport 5001 -j CLASSIFY --set-class 1:20
i have other class related commands for ssh, http and news.
i use the command 'tc -s class ls dev eth0' to view what's going on and there is no data transfer through class 1:20 even when i'm connected to slingbox.
the rest of the ports (ssh,http,news) are forwarded through the class properly.
is there any better way to catch slingbox data transfer ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了 iptables 内置模块 iprange。
所以我设置了为来自 slingbox 的 IP 地址而不是特定端口的任何数据配置的类。
I used the iptables built-in module iprange.
so i set the class to be configured for any data from the slingbox's ip address instead of a specific port.