Hi,
after some problems getting OpenWrt on this router (thanks to frollic and Leo-PL for help) I'm now configuring the router.
Initially I followed the instructions under "Basic configuration" in the installation instructions for the router from here https://openwrt.org/toh/zte/mf286d, but without success.
I installed the modemmanager and the qmi-protocol and changed the /etc/config/network:
root@OpenWrt:~# opkg update && opkg install kmod-usb-serial kmod-usb-net kmod-usb-serial-wwan kmod-usb-serial-option kmod-usb-net-qmi-wwan kmod-usb-net-cdc-mbim
root@OpenWrt:/# opkg update && opkg install modemmanager
root@OpenWrt:/# opkg update && opkg install luci-proto-qmi
vi /etc/config/network
-> ...
config interface 'lte'
option proto 'qmi'
option device '/dev/cdc-wdm0'
option pdptype 'IPV4V6'
option apn 'internet'
option ipv6 'auto'
option pincode '1234'
But I didn't got any connection, most AT-commands didn't worked and none of the uqmi-commands.
I found more information in the forum here https://forum.openwrt.org/t/zte-mf286d-internal-4g-modem/175362 an finally was able to connect to the internet via the LTE/4G modem.
I had to install the modemmanager-protocol and changed the /etc/config/network:
root@OpenWrt:/# opkg update && opkg install luci-proto-modemmanager
vi /etc/config/network
-> ...
config interface 'wwan'
option proto 'modemmanager'
option device '/sys/devices/platform/soc/8af8800.usb3/8a00000.dwc3/xhci-hcd.0.auto/usb2/2-1'
option apn ''
option pincode '1234'
option auth 'none'
option iptype 'ipv4'
option signalrate '5'
config device
option name 'wwan0'
option ipv6 '0'
Now I have access to the internet, but only on the router, a connected laptop has access to the router, but not to the internet, so s.th. is still missing:
root@OpenWrt:~# uqmi -d /dev/cdc-wdm0 --get-signal-info
{
"type": "lte",
"rssi": -72,
"rsrq": -11,
"rsrp": -102,
"snr": 12.000000
}
root@OpenWrt:~# uqmi -d /dev/cdc-wdm0 --get-serving-system
{
"registration": "registered",
"plmn_mcc": 262,
"plmn_mnc": 3,
"plmn_description": "o\u0019�\u0005\"�W",
"roaming": false
}
root@OpenWrt:~# uqmi -d /dev/cdc-wdm0 --get-current-settings
{
"pdp-type": "ipv4",
"ip-family": "ipv4",
"mtu": 1500,
"ipv4": {
"ip": "10.115.234.123",
"dns1": "62.109.121.17",
"dns2": "62.109.121.18",
"gateway": "10.115.234.213",
"subnet": "255.255.255.248"
},
"ipv6": {
},
"domain-names": {
}
}
root@OpenWrt:~# uqmi -d /dev/cdc-wdm0 --get-data-status
"connected"
root@OpenWrt:~# uqmi -d /dev/cdc-wdm0 --get-device-operating-mode
-> not working
root@OpenWrt:~# ip a s wwan0
7: wwan0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN qlen 1000
link/[65534]
inet 10.115.234.123/29 brd 10.115.226.215 scope global wwan0
valid_lft forever preferred_lft forever
root@OpenWrt:~# ping -c 3 quad4.org
PING quad4.org (192.53.161.94): 56 data bytes
64 bytes from 192.53.161.94: seq=0 ttl=43 time=490.206 ms
64 bytes from 192.53.161.94: seq=1 ttl=43 time=170.948 ms
64 bytes from 192.53.161.94: seq=2 ttl=43 time=167.734 ms
--- quad4.org ping statistics ---
3 packets transmitted, 3 packets received, 0% packet loss
round-trip min/avg/max = 167.734/276.296/490.206 ms
Any idea?
Thanks, kind regards, thg