树莓派 Linux 4G 模块 上网

在raspbian系统下使用wvdial来拨号连接4G网络

在网上搜索都说安装wvdial,可我安装了 也配置过了都没有成功。很遗憾,另辟蹊径。

我用的是华为4G模块 ME909S-821

在使用ifconfig  出现usb0的前提下使用以下脚本

#!/bin/sh
echo "ATE0" > /dev/ttyUSB2
echo "AT^NDISDUP=1,1,\"cmnet\""> /dev/ttyUSB2
ifconfig eth0 down
ifconfig usb0 up
udhcpc -iusb0
ifconfig eth0 up

连接成功会显示你的局域网IP地址10 开头的。


sitemap