码迷,mamicode.com
首页 > 系统相关 > 详细

Linux_服务器_禁止国外IP访问

时间:2021-04-19 15:10:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tmp   bash   code   tables   NPU   iptables   http   linux   table   

这里我们以禁止美国地址段为例,可以根据自己的需要将us.zone改为相应国家缩写


#/bin/bash
wget -O /tmp/us.zone http://www.ipdeny.com/ipblocks/data/countries/us.zone
for ip in `cat /tmp/us.zone`
do

iptables -I INPUT -s $ip -j DROP
done

Linux_服务器_禁止国外IP访问

标签:tmp   bash   code   tables   NPU   iptables   http   linux   table   

原文地址:https://www.cnblogs.com/hxlinux/p/14668861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!