当前位置:   article > 正文

SIM7600X PPP 拨号并开机自启动_sim7600 拨号工具

sim7600 拨号工具

一.准备

硬件准备

软件准备

  • 安装minicom
apt-get install minicom
  • 1
  • 查看dev下面有没有ttyS0,如果没有需要配置下串口
ls /dev/ttyS*
  • 1

二.AT指令调试(可选)

  • 进入minicom
sudo minicom -D /dev/ttyUSB2
  • 1
  • 检查sim卡是否接触良好:
AT+CPIN?
  • 1

  • 检查网络模式设置是否正确:
AT+CNMP?
  • 1

  • 检查当前环境的信号质量:
AT+CSQ
  • 1

  • 检查运营商接入情况:
AT+COPS?
  • 1

  • 检查联网情况:
AT+CPSI?
  • 1

  • 检查是否成功注册到网络:
AT+CREG?
  • 1

三.PPP拨号

  • 切换到root账号
sudo su
  • 1
  • 安装ppp
  sudo apt-get install ppp
  • 1
  • 进入/etc/ppp/peers目录,
cd /etc/ppp/peers
  • 1
  • 创建gprs文件
sudo nano gprs
  • 1
  • 将下面文本复制到 gprs
    (如果需要UART拨号,把ttyUSB2改为ttyS0,SIM7000X仅支持ttyUSB2拨号)内容如下:
user "myusername@realm"
#connect "/usr/sbin/chat -v -f /etc/chatscripts/pap -T ********"
connect "/usr/sbin/chat -v -f /etc/chatscripts/gprs"
#/dev/modem
/dev/ttyUSB2     
# Speed of the serial line.
115200
nocrtscts
debug
nodetach
ipcp-accept-local
ipcp-accept-remote
# Assumes that your IP address is allocated dynamically by the ISP.
noipdefault
# Try to get the name server addresses from the ISP.
usepeerdns
# Use this connection as the default route.
defaultroute
# Makes pppd "dial again" when the connection is lost.
persist
# Do not ask the remote to authenticate.
noauth
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • PPP拨号
pppd call gprs &
  • 1
  • 查看ppp0网络
ifconfig
  • 1
  • 测试上网
ping -I ppp0 www.baidu.com
  • 1
UART


USB

四.开机自启动PPP拨号(可选)

  • 编辑test.sh文件
sudo nano test.sh
  • 1
  • 复制以下文本到 tesh.sh
sudo su
# sleep 1m
cd /etc/ppp/peers
pppd call gprs &
  • 1
  • 2
  • 3
  • 4
  • 赋予脚本文件(例:test.sh,路径:./home/pi/test.sh)可执行权限
sudo chmod 777 test.sh
  • 1
  • 打开/etc/rc.local文件
sudo nano /etc/rc.local
  • 1
  • 在/etc/rc.local文件中(语句exit 0 之上一行)添加执行脚本命令
bash ./home/pi/test.sh
  • 1
  • 然后执行重启脚本
./test.sh
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/361167
推荐阅读
相关标签
  

闽ICP备14008679号