Chinaunix

标题: 很菜的关于CDMA拨号的请教 [打印本页]

作者: lifeclub    时间: 2005-01-17 11:53
标题: 很菜的关于CDMA拨号的请教
很菜的关于CDMA拨号的请教

/usr/sbin/ppp-on
/usr/sbin/ppp-off  
/etc/ppp/ppp-on-dialer
都配了且具有可执行属性
运行ppp-on 后无法接入网络。
在/var/log/messages里记录如下:
Jan 17 11:28:55 Bluesky kernel: CSLIP: code copyright 1989 Regents of the University of California
Jan 17 11:28:55 Bluesky kernel: PPP generic driver version 2.4.2
Jan 17 11:28:55 Bluesky pppd[2180]: pppd 2.4.1 started by root, uid 0
Jan 17 11:28:56 Bluesky chat[2181]: timeout set to 3 seconds
Jan 17 11:28:56 Bluesky chat[2181]: abort on (\nBUSY\r)
Jan 17 11:28:56 Bluesky chat[2181]: abort on (\nNO ANSWER\r)
Jan 17 11:28:56 Bluesky chat[2181]: abort on (\nRINGING\r\n\r\nRINGING\r)
Jan 17 11:28:56 Bluesky chat[2181]: send (rAT^M)
Jan 17 11:28:56 Bluesky chat[2181]: expect (OK)
Jan 17 11:28:59 Bluesky chat[2181]: alarm
Jan 17 11:28:59 Bluesky chat[2181]: send (+++)
Jan 17 11:28:59 Bluesky chat[2181]: expect (OK)
Jan 17 11:29:02 Bluesky chat[2181]: alarm
Jan 17 11:29:02 Bluesky chat[2181]: Failed
Jan 17 11:29:02 Bluesky pppd[2180]: Connect script failed
Jan 17 11:29:03 Bluesky pppd[2180]: Exit.

ppp-on 文件如下:
!/bin/sh
#
# Script to initiate a ppp connection. This is the first part of the
# pair of scripts. This is not a secure pair of scripts as the codes
# are visible with the 'ps' command.  However, it is simple.
#
# These are the parameters. Change as needed.
TELEPHONE=#777          # The telephone number for the connection
ACCOUNT=**** (隐去)        # The account name for logon (as in 'George Burns')
PASSWORD=****(隐去)        # The password for this account (and 'Gracie Allen')
LOCAL_IP=0.0.0.0        # Local IP address if known. Dynamic = 0.0.0.0
REMOTE_IP=0.0.0.0        # Remote IP address if desired. Normally 0.0.0.0
NETMASK=255.255.255.0        # The proper netmask if needed
#
# Export them so that they will be available at 'ppp-on-dialer' time.
export TELEPHONE ACCOUNT PASSWORD
#
# This is the location of the script which dials the phone and logs
# in.  Please use the absolute file name as the $PATH variable is not
# used on the connect option.  (To do so on a 'root' account would be
# a security hole so don't ask.)
#
DIALER_SCRIPT=/etc/ppp/ppp-on-dialer
#
# Initiate the connection
#
# I put most of the common options on this command. Please, don't
# forget the 'lock' option or some programs such as mgetty will not
# work. The asyncmap and escape will permit the PPP link to work with
# a telnet or rlogin connection. You are welcome to make any changes
# as desired. Don't use the 'defaultroute' option if you currently
# have a default route to an ethernet gateway.
#
exec /usr/sbin/pppd debug lock modem crtscts /dev/ttyS0 38400\
        asyncmap 20A0000 escape FF kdebug 0 $LOCAL_IPREMOTE_IP \
        noipdefault netmask $NETMASK defaultroute connect $DIALER_SCRIPT

ppp-on-dialer如下:
#!/bin/sh
#
# This is part 2 of the ppp-on script. It will perform the connection
# protocol for the desired connection.
#
exec chat -v                                                \
        TIMEOUT                3                                \
        ABORT                '\nBUSY\r'                        \
        ABORT                '\nNO ANSWER\r'                        \
        ABORT                '\nRINGING\r\n\r\nRINGING\r'        \
        ''                \rAT                                \
        'OK-+++\c-OK'        ATH0                                \
        TIMEOUT                30                                \
        OK                ATDT$TELEPHONE                        \
        CONNECT                ''                                \
        ogin:--ogin:        $ACCOUNT                        \
        assword:        $PASSWORD




联通接入号码是#777
我怀疑是/usr/sbin/ppp-on中  TELEPHONE=#777  的"#"号把接入号码当成注释了~~请问是这样吗?如果是怎样解决~~希望高手给予指点,谢谢
作者: lifeclub    时间: 2005-01-17 11:54
标题: 很菜的关于CDMA拨号的请教
在线等.....
作者: q1208c    时间: 2005-01-17 12:15
标题: 很菜的关于CDMA拨号的请教
加个引号试试.
作者: lifeclub    时间: 2005-01-17 12:41
标题: 很菜的关于CDMA拨号的请教
单引号双引号我都试过的,不行~~~
作者: q1208c    时间: 2005-01-17 12:48
标题: 很菜的关于CDMA拨号的请教
用反斜杠试过没有?
作者: xuhehao    时间: 2005-01-17 12:51
标题: 很菜的关于CDMA拨号的请教
TELEPHONE=\#777这样试一下

特服号居然是#开头的,真是够BT的,第一次见到
作者: lifeclub    时间: 2005-01-17 13:10
标题: 很菜的关于CDMA拨号的请教
能想的我都试过,  \#777  还是把#号后面的认为是注释
“#777” 和'#777' 倒是不会认成注释,但var/log/messages报的错误一样
ppp-on后连停顿都没有,马上就跳出下一个命令行....用ADSL拨号都会停顿一会儿的呀~~   CDMA连接没有问题,同一台机器我在WINDOWS下拨通了的,晕呀
作者: 山中无老虎    时间: 2005-01-17 13:20
标题: 很菜的关于CDMA拨号的请教
你把设置的内容后面的注释去掉试一下。我在设置拨号程序的时候,如果后而有注释行则出错!
作者: lifeclub    时间: 2005-01-17 13:40
标题: 很菜的关于CDMA拨号的请教
试了,没有用~~~怎么测试串口和猫通信正常?我用minicom连上开关电源后会出几个字符,正常吗?  
还有什么方法能拨上去呀?
作者: xuhehao    时间: 2005-01-17 14:00
标题: 很菜的关于CDMA拨号的请教
我看这个脚本比较简单,就是设置变量然后export的过程,你试着自己用export TELEPHONE=#777先设置好TELEPHONE这个环境变量然后试试看呢?
作者: lifeclub    时间: 2005-01-17 14:16
标题: 很菜的关于CDMA拨号的请教
楼上的大哥,能不能具体点~~设了它和我脚本里面赋值有什么关系呀?
作者: xuhehao    时间: 2005-01-17 14:36
标题: 很菜的关于CDMA拨号的请教
[quote]原帖由 "lifeclub"]楼上的大哥,能不能具体点~~设了它和我脚本里面赋值有什么关系呀?[/quote 发表:


我的ppp-on的sample文件是这样的:
# These are the parameters. Change as needed.
TELEPHONE=555-1212      # The telephone number for the connection
ACCOUNT=george          # The account name for logon (as in 'George Burns')
PASSWORD=gracie         # The password for this account (and 'Gracie Allen')
LOCAL_IP=0.0.0.0        # Local IP address if known. Dynamic = 0.0.0.0
REMOTE_IP=0.0.0.0       # Remote IP address if desired. Normally 0.0.0.0
NETMASK=255.255.255.0   # The proper netmask if needed
#
# Export them so that they will be available at 'ppp-on-dialer' time.
export TELEPHONE ACCOUNT PASSWORD

看看有没有什么提示?
作者: lifeclub    时间: 2005-01-17 14:55
标题: 很菜的关于CDMA拨号的请教
我的原始sample也是这样的,报的信息一样~~

这个脚本调用的是pppd  ,运行pppd后一堆看不懂的乱码,按网上的说法pppd应该是没有问题的
作者: lifeclub    时间: 2005-01-17 16:04
标题: 很菜的关于CDMA拨号的请教
自己顶一下~~晕啊
作者: lifeclub    时间: 2005-01-18 09:34
标题: 很菜的关于CDMA拨号的请教
我再定一下~~郁闷ing......
作者: tmdxy    时间: 2006-04-11 18:32
set phone "#777"
http://www.abclinuxu.cz/blog/Strider/2006/2/25/122393




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2