Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有人尝试对我的网站进行强制爆发攻击。我怎样才能阻止他们的 IP 地址。
我的意思是,如果每秒收到许多 http/Apache/SQL 请求,我想阻止 IP。我怎样才能防止那些力量爆发攻击
Linux 服务器
预先感谢
在您的 .htaccess 中,您可以添加如下内容:
order allow,deny deny from <ip address> allow from all
或者根据您的操作系统,您可以向 iptables 添加规则。
例如,这是您在 ubuntu 中的操作方式。