我正在尝试Sierra Wireless AirCard 313U(更具体地说,AT&T Momentum 4G) 在 Ubuntu Linux 下工作。
到目前为止我已经浏览了许多页面:
如何在 Ubuntu/Mint 上使用 AT&T USBConnect Momentum 4G (AC313U) 连接互联网?
我可以在 Linux 机器上使用 Sierra 无线调制解调器(直接 IP 调制解调器)吗?
在 Linux 上设置 Bigpond NextG 无线连接
根据以上内容,我的理解是,Sierra Wireless 驱动程序已包含在非旧版 Linux 内核中,并且应该会自动检测该设备,并/dev/ttyUSB*
因此创建一些设备文件。但是,我没有看到这些文件。
dmesg
显示几行
[ 555.877426] usb 2-2: config 1 has an invalid interface number: 7 but max is 5
这似乎表明该设备处于软件安装模式,而不是调制解调器模式。我不确定如何让设备进入调制解调器模式;我的理解是驱动程序无论如何都应该这样做。
我尝试在 Ubuntu 12.04 和 10.04.04 下插入,结果基本相同(即未检测到设备)。我能够modprobe sierra
(modprobe sierra_net
至少在 12.04 上;10.04.04 似乎没有该sierra_net
模块),因此应该包含驱动程序。
我在几台 Windows 7 机器上试用过该设备,但奇怪的是它并没有像预期的那样自动安装驱动程序;我不得不从 AT&T 的网站下载并自行安装。
答案1
在有线调制解调器互联网普及之前,我公司就有 AT&T 移动 3G USB 插件。当 DSL 断线时,它就是我的备用设备。
我发现让它工作的最简单方法是在安装 Ubuntu 时将其插入计算机。这就是我们在路上上网时所做的,需要从 Ubuntu 中的 POS 应用程序运行人们的信用卡。我记得我们在路上使用的 Ubuntu 是 10.04……?
当它在工作时,这些是使它上线的神奇步骤... ssh 进入防火墙 ubuntu 服务器(编辑:刚刚检查,防火墙是 9.04):
root@wall:~# cat do_this_for_3g.txt
nohup pppd call gsm &
# Then after DSL works, to kill the 3G...
ps aux | grep pppd
# root 18716 0.0 0.0 7528 888 pts/0 R+ 12:08 0:00 grep pppd
# root 23021 0.0 0.1 21668 1316 pts/0 S Mar15 0:00 pppd call gsm
kill 23021
/etc/init.d/networking restart
请注意,这gsm_chat
是一个脚本/etc/ppp/peers
:
root@wall:/etc/ppp/peers# cat gsm_chat
# Connection script for Sierra Wireless GSM/UMTS modems
# Note: This demo script is setup to work on the Cingular EDGE network
#
SAY 'Starting Sierra Wireless GSM connect script...\n'
SAY '\n'
#######################################
SAY 'Setting the abort string\n'
SAY '\n'
# Abort String ------------------------------
ABORT 'NO DIAL TONE' ABORT 'NO ANSWER' ABORT 'NO CARRIER' ABORT DELAYED
#######################################
SAY 'Initializing modem\n'
# Modem Initialization
'' AT
OK ATZ
#######################################
SAY '\n'
SAY 'Setting APN\n'
# Access Point Name (APN)
# Incorrect APN or CGDCONT can often cause errors in connection.
# Below are a bunch of different popular APNs
#REG:\s1 AT+cgdcont=1,"IP","proxy"
#OK 'AT+CGDCONT=0,"IP","proxy"'
#OK 'AT+CGDCONT=1,"IP","proxy"'
#OK 'AT+CGDCONT=2,"IP","proxy"'
#OK 'AT+CGDCONT=0,"IP","ISP.CINGULAR"'
OK 'AT+CGDCONT=1,"IP","ISP.CINGULAR"'
#OK 'AT+CGDCONT=2,"IP","ISP.CINGULAR"'
#######################################
SAY '\n'
SAY 'Dialing...\n'
# Dial the ISP, this is the common Cingular dial string
OK ATD*99#
CONNECT ''