linux禁止某IP访问服务器

Linux禁止某IP访问服务器操作:
  • 用途:过滤某用户IP频繁访问服务器

  • 限制某IP访问流程:

    # 添加限制访问IP
    iptables -I INPUT -a xxx.xxx.xxx.xxx(IP) -j DROP
    
    # 查看filter规则
    iptable -t filter -nvl --line-number
    
    # 删除Chain INPUT编号为1的规则(具体编号根据上句查询结果指定)
    iptables -D INPUT 1
    

你可能感兴趣的:(服务器,linux,tcp/ip)