Comment 5 for bug 1592514

Revision history for this message
rienesl (rienesl) wrote :

Unbelieveable, but this bug still exists! I have the Compaq Mini 700, which has the Qualcommm Gobi 1000 (which is sold from HP as the un2400 and has the MDM1000 chipset). It took until 18.04 until this network card could get activated under Linux at all, but due to this bug, it wasn't possible to get a connection up. Same error messages as posted before. I had to modify the script a bit, but it works like this (currently writing with a connection established by it):
[code]
#!/bin/bash
mmcli -m 0 -b 0 --connect
ifconfig wwan0 up
mmcli -m 0 -b 0
dhclient -d wwan0 &
echo "nameserver 8.8.8.8" >> /etc/resolv.conf
[/code]