屏蔽所有境外(国外)IP段

首先分享几个IP段的资源:

http://ip.bczs.net/countrylist

https://www.ipdeny.com/ipblocks/

http://www.ipdeny.com/ipblocks/data/countries/cn.zone

http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest

 

首先安装ipset:

apt install ipset

下载IP段数据:

wget -q --timeout=60 -O- 'http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest' | awk -F\| '/CN\|ipv4/ { printf("%s/%d\n", $4, 32-log($5)/log(2)) }' > /root/china_ssr.txt

将下面脚本保存为/root/allcn.sh ,设置可执行权限

mmode=$1
#下面语句可以单独执行,不需要每次执行都获取网段表
#wget -q --timeout=60 -O- 'http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest' | awk -F\| '/CN\|ipv4/ { printf("%s/%d\n", $4, 32-log($5)/log(2)) }' > /root/china_ssr.txt
CNIP="/root/china_ssr.txt"
gen_iplist() {
        cat <<-EOF
                $(cat ${CNIP:=/dev/null} 2>/dev/null)
EOF
}
flush_r() {
    iptables  -F ALLCNRULE 2>/dev/null
    iptables -D INPUT -p tcp -j ALLCNRULE 2>/dev/null
    iptables  -X ALLCNRULE 2>/dev/null
    ipset -X allcn 2>/dev/null
}
mstart() {
    ipset create allcn hash:net 2>/dev/null
    ipset -! -R <<-EOF 
    $(gen_iplist | sed -e "s/^/add allcn /")
    EOF
     
    iptables -N ALLCNRULE 
    iptables -I INPUT -p tcp -j ALLCNRULE 
    iptables -A ALLCNRULE -s 127.0.0.0/8 -j RETURN
    iptables -A ALLCNRULE -s 169.254.0.0/16 -j RETURN
    iptables -A ALLCNRULE -s 224.0.0.0/4 -j RETURN
    iptables -A ALLCNRULE -s 255.255.255.255 -j RETURN
    #可在此增加你的公网网段,避免调试ipset时出现自己无法访问的情况
    iptables -A ALLCNRULE -m set --match-set allcn  src -j RETURN
    iptables -A ALLCNRULE -p tcp -j DROP
}
if [ "$mmode" == "stop" ] ;then
    flush_r
    exit 0
fi
flush_r
sleep 1
mstart

执行下面代码,执行后国外ip将无法打开网站

/root/allcn.sh

如果要停止的话执行下面这个命令可恢复国外ip访问网站:

/root/allcn.sh stop

注意:代码是建立在你懂脚本命令的情况下,新手小白不要瞎搞,不然会导致所有人访问不了你的服务器(包括网站和远程连接),还有,一定要确保安装了ipset,本人就是没有安装ipset的情况下执行了脚本,导致进不去服务器了,最后通过VNC连接进去关闭了才进的服务器

 

脚本来源:

https://blog.csdn.net/t1174148618/article/details/100902449

https://www.jianshu.com/p/f1dcf757ea63