114so.cn劫持是最让用户烦恼的,电信也是个大流氓,你举报也无从举报,投诉也无从投诉. 所以我们现在只能从我们自身这里进行屏蔽.方法其实很多,我们可以在hosts里进行屏蔽,也可以在路由器里屏蔽.也可以利用iptables防火墙来屏蔽,我们这里不演示路由器里屏蔽了.我们这里只演示hosts和iptables屏蔽.
hosts屏蔽方法:
vi /etc/hosts 127.0.0.1 *.114so.cn *.114so.cn 127.0.0.1
OR
echo "127.0.0.1 *.114so.cn" >> /etc/hosts echo "*.114so.cn 127.0.0.1" >> /etc/hosts
iptables屏蔽方法:
service iptables restart iptables -I FORWARD -d www.2345.com -j DROP iptables -I FORWARD -d search.114so.cn -j DROP iptables -I FORWARD -d daohang.114so.cn -j DROP service iptables save service iptables restart
shell一键脚本:
# !/bin/bash echo "127.0.0.1 *.114so.cn" >> /etc/hosts echo "*.114so.cn 127.0.0.1" >> /etc/hosts service iptables restart iptables -I FORWARD -d www.2345.com -j DROP iptables -I FORWARD -d search.114so.cn -j DROP iptables -I FORWARD -d daohang.114so.cn -j DROP service iptables save service iptables restart
sicnature ---------------------------------------------------------------------
I P 地 址: 18.118.166.130
区 域 位 置: 美国马萨诸塞
系 统 信 息:
Original content, please indicate the source:
同福客栈论坛 | 蟒蛇科普 | 海南乡情论坛 | JiaYu Blog
sicnature ---------------------------------------------------------------------
Welcome to reprint. Please indicate the source https://myzhenai.com.cn/post/2077.html
没有评论