Zte Modem Linux Drivers

Download official HUAWEI Data Cards Linux Driver Pack Users who are using Huawei Data Card for connecting to the internet that knows what is the value of Huawei Mobile Partner dashboard. Dashboard is a visual interface of the modem which comes with drivers and helps the people to connect to the internet. This entry was posted in Linux and tagged Debian, GSM, Huawei, Linux, minicom, modem, Ubuntu, ZTE on December 30, 2011 by Marko. Post navigation ← Ambiance & Radiance themes from Ubuntu 10.10 Maverick on 10.04 Lucid Lynx Manage GSM mobile broadband connections without Network Manager (Ubuntu, Linux Mint, Debian) →.

  1. Zte Modem Linux Drivers Downloads
  2. Zte Modem Linux Driver
  3. Zte Modem Linux Drivers Free
  4. Zte Modem Linux Drivers Windows 10
  5. Zte Modem Linux Drivers

Zte Modem Linux Drivers Downloads

To use a 'ZTE MF180 HSDPA USB Stick' (a device typically retailed by network providers like the Austrian bob as the 'bob datenstick' (bob data stick)) on a (e.g Debian) GNU/Linux system, these instructions worked for me.

Please note that some of the commads I send to the device were from somewhere in the internet (links given where relevant) or even guessed. They worked for me, but might turn your device into a useless brick!

When first connecting the stick, it presents itself as as CD-ROM device after a few seconds. dmesg shows:

and lsusb lists it as:

(Of course, som details will differ from system to system.)

This CD typically contains vendor specific Windows drivers; you might want to look for a fitting icon there if you intend to create a graphical button for launching wvdial.

At this stage, the LED on the device should be red.

In order to access the modem proper, you'll need to signal to the stick that it may switch now. Fortunately, on this particular stick this is implemented in a quite straigt-forward way -- simply eject the CD:

After ejecting, three new devices will show up at ls /dev/ttyUSB*:

The important one is /dev/ttyUSB2. According to an ubuntuforums entry, /dev/ttyUSB0 is a NMEA port (which I have not yet seen doing anything) and /dev/ttyUSB1 is for montioring (e.g. querying signal strength while a connection is open).

Zte Modem Linux Driver

At this stage, the LED should still be red.

You can now communicate with the device using AT commands, e.g. by using screen /dev/ttyUSB2. For example, you can query the security status by entering AT+ZSEC?:

(That is, you enter AT+ZSEC?, followed by return, and the stick responds with a status and an OK message. You can leave the screen session by pressing Ctrl-a, k, and y. If screen complains about 'Cannot access line', you might need to invoke it with sudo.)

The exact interpretation of the ZSEC reply is explained in the 3g-modem wiki, but for now it will be sufficient to know that 0,0 means that no PIN has been entered.

Disabling CD mode

Zte Modem Linux Drivers Free

There are two parameters that can be set: 'autorun' and 'download'.

Autorun can be enabled using AT+ZCDRUN=9, disabled using AT+ZCDRUN=8 and queried using AT+ZCDRUN=4. [1]

Zte Modem Linux Drivers Windows 10

Download mode can be enabled using AT+ZCDRUN=E, disabled using AT+ZCDRUN=F and queried using AT+ZCDRUN=G. [2]

Enabling download mode works best for me as it hides the CD completely. (Autorun mode just makes both the ttyUSB and the CD show up at the same time.)

Before the modem accepts any commands from wvdial to set up the modem connection, it needs the SIM card unlocked by entering the PIN (where 1234 is your PIN):

Zte Modem Linux Drivers

The LED will then turn blue after a few seconds, and AT+ZSEC? will then receive the response 3,0.

LED color

It might happen that you LED remains red or goes back to red after some time, or goes to green. This seems to be due to bad network connectivity; AT+ZPAS? reported 'Limited Service' instead of 'UMTS','CS_PS' for me iff the LED was red, and 'GPRS','CS_PS' iff the LED was green.

Disabling the PIN

To use the wvdial configuration below, you need to allow the SIM card to connect without a password. Disable password prompting by issuing AT+CLCK='SC',0,'1234' (again, for you PIN being 1234). You can re-enable it using AT+CLCK='SC',1,'1234'.

The more secure version would be writing a chat script that enters the pin and polls for the response to AT+ZSEC? or AT+ZPAS? to indicate that everything is ready.

After the device is unlocked and connected to the network, a pretty straightforward /etc/wvdial.conf setting for wvdial is required to get things running; I use this:

The Phone, Username and Password parts, the 'bob.at' section in the Init2 (that's the APN) and the 'Stupid Mode' are specific to bob; instructions what to put there should come with your SIM card.

Then, start wvdial bobstick (you might need sudo again, and don't forget to close screen sessions running on /dev/ttyUSB2 as they'll eat the stick's responses):

And there you go, network up and running!

The LED should be blinking now.

If you want to further interact with the device, use screen /dev/ttyUSB1 as ttyUSB2 is now in use by PPP.

(Remember what I said about bricking? That's the part where I guessed brutally.)

Modem

When a connection is active, just stopping wvdial is not enough to make the connection stop on the stick's side -- the LED keeps blinking. Sending the command AT+ZRST resets the device.

jtrenchard found some more commands in the binary code of a similar dongle, e.g. a AT+ZVN which I guess stants for 'ZTE version' and reports 'BD_MF180TLF3V1.0.0B01 [JUNE 8 2010 17:00:00]' for me. The AT+ZRST very much looks like a reset command (as does AT+ZOPRT=0), AT+ZECC? returns US and European emergency numbers.

Modem

Similar devices probably have different tty numbers. For example, see the ZTE MF193 guide by Rudy Godoy.

Written by chrysn 2010-10-26 (updated 2014-02-14), published under the terms of CC-BY-SA. For the latest version, look at the original address, where you will also find the reStructuredText source.