I was experiencing an issue with connecting my Mobile Broad band modem. I was using Ubuntu 16.04 LTS and Huawei e3372 Modem. To fix this issue. I followed the procedure listed below.
In order to detect the available USB devices, the below command was used.
$lsusb
This will give you the below output.
Bus 001 Device 002: ID 0483:91d1 STMicroelectronics Sensor Hub
......
......
Bus 001 Device 010: ID 12d1:1506 Huawei Technologies Co., Ltd. Modem/Networkcard
Above entry pertaining to Huawei modem specifies the Vendor ID and the Product ID which is required to create usb modeswitch rules. According to this output:
Vendor ID: 12d1
Product ID: 1506
In order to add a usb modeswitch rule, I followed below listed steps. Modeswitch rules should be added to the file "40-usb_modeswitch.rules" located in "/lib/udev/rules.d/". This file was opened using VI editor for modifications.
# sudo vi /lib/udev/rules.d/40-usb_modeswitch.rules
Then I added the following lines. Product ID and the Vendor ID was captured using the output of the command "lsusb":
# Huawei E3272
ATTR{idVendor}=="12d1", ATTR{idProduct}=="157c", RUN +="usb_modeswitch '%b/%k'"
Finally I reinserted the modem and tested the connection. There will be no message or confirmation, but the connection will appear in your panel as it would if you would insert an ethernet cable.
If you are not getting the result as expected above, try to restart your laptop and try again by reconnecting the modem.
Huawei e3372 Modem not working with Ubuntu 16.04 LTS
May 04, 2016 / by Kushan Sharma / with 1 comment /
Related Posts:
Secure remote backups with Rsync and SSHMany Linux users know rsync as a file transfer utility. Rsync is an efficient tool for automating remote backups of Linux, Windows, and even Mac OS X … Read More
What's Best for Remote Workers: VDI or VPN?VPN serves to create a secure tunnel between an endpoint device and the company network allowing secure remote access to company network from an inter… Read More
Information Security vs IT Security vs Cyber SecurityInformation security, IT security, and cyber security are all related terms that refer to the protection of digital assets against unauthorized access… Read More
Should the Shadow IT at Your Organization be prevented...? Introduction Normal 0 false false false EN-US ZH-CN SI-LK … Read More
Dell Inspiron 14 5000 Series with Ubuntu 20.04 does not turn onRemove kernelsharma@Sharma-LAP:~/Downloads/new-kernal$ dpkg -l | grep linux-imageii linux-image-5.13.0-30-generic &… Read More
1 comments:
I tried this approach but the modem is still not detected.
Post a Comment