| 1803 | | == Telit LN920 / LN940 |
| 1804 | | |
| 1805 | | These Telit modems should run fine on the Gateworks SBC using a GW16140/GW16141 M.2 Adapter. |
| | 1803 | == Telit LE910 / LN920 / LN940 |
| | 1804 | |
| | 1805 | These Telit modems should run fine on the Gateworks SBC (may require GW16140/GW16141 M.2 Adapter) |
| | 1806 | |
| | 1807 | Telit LE910C4-WWXD has been tested |
| | 1808 | |
| | 1809 | Typical test sequence would be: |
| | 1810 | {{{ |
| | 1811 | mmcli -m 0 |
| | 1812 | mmcli -m 0 --enable |
| | 1813 | mmcli -m 0 --simple-connect="apn=hologram,ip-type=ipv4" |
| | 1814 | }}} |
| | 1815 | |
| | 1816 | It may be required to manually set the IP address and other information rather than relying on a DHCP: |
| | 1817 | {{{ |
| | 1818 | root@jammy-venice:~# mmcli -m 0 -b 1 #review IP / gateway issued by ISP, bearer argument may need to be changed to 1 |
| | 1819 | --------------------------------- |
| | 1820 | General | path: /org/freedesktop/ModemManager1/Bearer/1 |
| | 1821 | | type: default |
| | 1822 | --------------------------------- |
| | 1823 | Status | connected: yes |
| | 1824 | | suspended: no |
| | 1825 | | multiplexed: no |
| | 1826 | | interface: wwan0 |
| | 1827 | | ip timeout: 20 |
| | 1828 | --------------------------------- |
| | 1829 | Properties | apn: hologram |
| | 1830 | | roaming: allowed |
| | 1831 | | ip type: ipv4 |
| | 1832 | --------------------------------- |
| | 1833 | IPv4 configuration | method: static |
| | 1834 | | address: 10.55.5.114 |
| | 1835 | | prefix: 30 |
| | 1836 | | gateway: 10.55.5.113 |
| | 1837 | | dns: 8.8.8.8, 8.8.4.4 |
| | 1838 | | mtu: 1430 |
| | 1839 | --------------------------------- |
| | 1840 | Statistics | start date: 2023-06-26T17:05:29Z |
| | 1841 | | attempts: 1 |
| | 1842 | ifconfig wwan0 10.55.5.114/30 #set IP for wwan0 from bearer output |
| | 1843 | route add default gw 10.55.5.113 wwan0 #set default gateway |
| | 1844 | echo "nameserver 8.8.8.8" > /etc/resolv.conf |
| | 1845 | echo "nameserver 8.8.4.4" > /etc/resolv.conf |
| | 1846 | }}} |
| | 1847 | |
| | 1848 | Then try to ping google. |