如何使用 htaccess 而不是 httpd.conf 来限制 CentOS 中的带宽?

如何使用 htaccess 而不是 httpd.conf 来限制 CentOS 中的带宽?

我正在尝试限制 centOS 中的带宽。我尝试过使用bw_modulecband_modulebandwidth_module,但所有这些都需要使用httpd.conf并且必须重新启动 httpd!

我必须实时执行此操作。我想允许网站启动时顺利更新,并且不要重新启动。有没有办法使用.htaccess而不是httpd.conf

这是我的httpd.conf代码:

CBandScoreFlushPeriod 1
CBandRandomPulse On
<Virtualhost *>
    BandwidthModule On
    ForceBandWidthModule On
    Bandwidth all 500000
    Servername www.XXX.com
</Virtualhost>

我需要插入

Bandwidth 123.456.748.9 20000

适用于大量 IP 并保持动态。有什么办法吗?

答案1

可以使用以下方法实现此目的iptables(参见http://blog.edseek.com/~jasonb/articles/traffic_shaping/)。

相关内容