This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:common:add-ons:em06-lte-4g-module [2023/04/05 02:47] ivan [Check Network] |
products:sbc:common:add-ons:em06-lte-4g-module [2025/08/21 00:25] (current) nick |
||
---|---|---|---|
Line 16: | Line 16: | ||
=== Setup LTE Module === | === Setup LTE Module === | ||
- | |||
- | Install '' | ||
- | |||
- | ```shell | ||
- | sudo apt update | ||
- | sudo apt install minicom | ||
- | ``` | ||
Setting to '' | Setting to '' | ||
```shell | ```shell | ||
- | sudo minicom | + | echo -e " |
``` | ``` | ||
- | After open '' | ||
- | |||
- | ```txt | ||
- | AT+QCFG=" | ||
- | |||
- | OK | ||
- | ``` | ||
LTE module needs power down and restart to switch mode. Unplug your SBC and plug again. LTE module now works in '' | LTE module needs power down and restart to switch mode. Unplug your SBC and plug again. LTE module now works in '' | ||
Line 43: | Line 29: | ||
``` | ``` | ||
- | AT+QCFG=" | + | echo -e "AT+QCFG=\" |
``` | ``` | ||
Line 133: | Line 119: | ||
==== Check Network ==== | ==== Check Network ==== | ||
+ | <tabbox 5.15 Kernel> | ||
+ | ```shell | ||
+ | $ ifconfig ppp0 | ||
+ | ppp0: flags=4305< | ||
+ | inet 10.142.115.111 | ||
+ | inet6 2408: | ||
+ | inet6 fe80:: | ||
+ | inet6 2408: | ||
+ | inet6 fe80:: | ||
+ | inet6 2408: | ||
+ | inet6 2408: | ||
+ | ppp txqueuelen 3 (Point-to-Point Protocol) | ||
+ | RX packets 100 bytes 8864 (8.8 KB) | ||
+ | RX errors 0 dropped 0 overruns 0 frame 0 | ||
+ | TX packets 109 bytes 8083 (8.0 KB) | ||
+ | TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | ||
+ | ``` | ||
+ | |||
+ | Use ping command to test. | ||
+ | |||
+ | ```shell | ||
+ | $ sudo ping www.baidu.com -I ppp0 | ||
+ | ``` | ||
+ | <tabbox 5.4 Kernel> | ||
```shell | ```shell | ||
$ ifconfig wwan0 | $ ifconfig wwan0 | ||
- | wwan0: flags=4098< | + | wwan0: flags=4291<UP,BROADCAST, |
- | ether 1a:68:e0:a7:94:88 | + | inet 10.31.233.176 |
+ | ether 46:57:61:32:f4:a5 | ||
RX packets 0 bytes 0 (0.0 B) | RX packets 0 bytes 0 (0.0 B) | ||
RX errors 0 dropped 0 overruns 0 frame 0 | RX errors 0 dropped 0 overruns 0 frame 0 | ||
- | TX packets | + | TX packets |
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | ||
``` | ``` | ||
- | |||
Use ping command to test. | Use ping command to test. | ||
```shell | ```shell | ||
- | $ sudo ping www.baidu.com -I wwan0 | + | $ sudo ping www.baidu.com -I www0 |
``` | ``` | ||
+ | </ | ||
If your LTE module works normally, it will be successful. | If your LTE module works normally, it will be successful. |