- 论坛徽章:
- 0
|
很菜的关于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_IP REMOTE_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 的"#"号把接入号码当成注释了~~请问是这样吗?如果是怎样解决~~希望高手给予指点,谢谢 |
|