Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 at 命令通过 USB 3g 加密狗连接互联网。
我的 apn 提供商是:
APN = tim.br Username = tim Password = tim
如何仅使用 at 命令进行连接?这是可能的?
谢谢。
尝试这样的事情: -
AT+CGDCONT=1,"IP","tim.br" ATD*99***1#
要连接,您需要使用 AT 命令:
AT+CGDCONT=1,"IP","tim.br"
配置 APN,然后
ATD*99***1#
实际连接。这将打开一个 PPP 会话,并且用户名和密码通常在 PPP 会话本身中通过 PAP 提供,因此您需要将它们放在您的 PPP 客户端中。