FreeBSD 带宽分配
我们有一个 FreeBSD 服务器。主要 IP 为 11.11.11.11。还有两个额外的 IP 22.22.22.22 和 33.33.33.33。
需要在此服务器上设置防火墙,执行以下操作:
如果用户从 11.11.11.11 下载,则授予他 5Mbit 保证带宽。
如果用户从 22.22.22.22 下载,每个传入 ip 的下载带宽限制为 320Kbit,因此,如果一个 ip 使用 10 个连接/线程下载,带宽将为 32Kbit。
如果用户从33.33.33.33下载,则下载带宽不受限制。此外,如果全部使用 95Mbit,则需要占用从 22.22.22.22 下载的用户的带宽。
We have a FreeBSD server. Primary IP is 11.11.11.11. Also there are two additional IPs 22.22.22.22 and 33.33.33.33.
Need to set up a firewall on this server doing the following:
If user downloads from 11.11.11.11, grant him 5Mbit guaranteed bandwidth.
If user downloads from 22.22.22.22 limit download bandwidth to 320Kbit per incoming ip so if one ip is downloading using 10 connections/threads, bandwidth will be 32Kbit.
If user downloads from 33.33.33.33 download bandwidth is not limited. Moreover if all 95Mbit is used it should take bandwidth from users downloading from 22.22.22.22.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要 ALTQ,它是数据包过滤器 (PF) 的一部分。请查看以下示例:
以及来自 OpenBSD 网站的精美文档:
http:// www.openbsd.org/faq/pf/queueing.html
您可能会发现示例配置与您的配置非常相似。
You will need ALTQ, which is a part of Packet Filter (PF). Please take a look at the examples in:
and nice documentation from OpenBSD website:
http://www.openbsd.org/faq/pf/queueing.html
You will probably find in the examples configuration very similar to your.