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:
Why / Why Not Virtual Patching While the goal of many organizations is to maintain operating systems and other business application software are always up to date with latest … Read More
Event Log Retention Requirements as mandated by Major Compliance RegulationsOn September 20th, 2016, Digital Edge released an article on Log Management Laws and Regulations. Below is a little "Cheat Sheet" on the Event Lo… Read More
Remove PostgreSQL in Ubuntu 18.04Once I was using PostgreSQL and when I no longer need to keep the installation, I wanted to remove it completely. So I used the command listed b… Read More
Is Microsoft Windows User Account Control (UAC) a Security Feature?User Account Control (UAC) helps mitigate the impact of malware. Each app that requires the administrator access token must prompt for consent. The on… Read More
Analysing Windows Event Logs collected in CSV FormatRecently I wanted to analyze Microsoft Windows server logs collected as CSV files. Logs in default evtx format were not available for the required per… Read More
1 comments:
I tried this approach but the modem is still not detected.
Post a Comment