Closed GoogleCodeExporter closed 9 years ago
原因基本查明,由于linux用户IP地址不稳定,如果被封禁很可�
��是因为曾经出现过0.0.0.0这个
IP并产生了较大流量,请LINUX用户在得到IP后自行检查,出现��
�禁IP后立即下线,然后再上线,得到非违禁IP就可以正常上网
了。
悲剧了,封一个月啊= =
Original comment by gundamfj...@gmail.com
on 10 Mar 2011 at 6:50
dhcp脚本不要用默认的dhclient,自己写一个保证获取到ip的(Win
下编写,shell不熟,未测试)
#! /bin/bash
eth=
ip=
while [ "x$ip" == "x" -o "x$ip" == "x0.0.0.0" ]; do
dhclient $eth
ip=`ifconfig $eth | awk '/inet /{print m[split($2,m,":")]}' | grep -v '127.
0.0.1'`
done
Original comment by www.eh...@gmail.com
on 10 Mar 2011 at 10:49
Original comment by www.eh...@gmail.com
on 25 Jun 2011 at 11:02
Original issue reported on code.google.com by
gundamfj...@gmail.com
on 8 Mar 2011 at 8:49