little_cup
2013-04-24 10:59:59 +08:00
LZ是川大的吧?听说那边协同最近又更新了…成都理工表示目前仍然是协同2.07。
把下面这段插进启动脚本可以破协同2.07拨号:
#OpenWRT的
_account='CD028XXXXX@96301'#帐号
_password='12345678'#密码
_random=`head /dev/urandom |tr -cd a-f0-9|cut -c 1-8`
_true_account='~ghca'$_random'2007'`echo -n 'jepyid'$_account$_random$_password|md5sum|cut -c 1-20`$_account
_20_line=' option username '\'$_true_account\'
sed -i "20s/.*/$_20_line/" /etc/config/network
/etc/init.d/network restart
#打开/etc/config/network看看你的路由第20行是不是用户名。
#dd-WRT的
#!/bin/sh
the_random=`head /dev/urandom |tr -cd a-f0-9|cut -c 1-8`
the_account='~ghca'$the_random'2007'`echo -n 'jepyid''CD028XXXXX@96301'$the_random'12345678'|md5sum|cut -c 1-20`'CD028XXXXX@96301'
sed -i "s/^user.*/user \'$the_account\'/g" /tmp/ppp/options.pppoe
killall redial
killall pppd
pppd file /tmp/ppp/options.pppoe