Here is a tip on how to setup the EVDO on Linux. Since the EVDO vendors are not shipping any softwares to support EVDO on Linux, this post might be helpful.
- Plug your EVDO to the USB port.
- As a root user type
lsusb
- Look for the vendor ID and the Device ID (for BSNL it’ll be 05c6:3197). Note it down.
- run (Use ID’s from step 3)
modprobe usbserial vendor=0x05c6 product=0x3197
- run
gedit /etc/wvdial.conf
and add the following line
[Dialer Defaults] Modem=/dev/ttyUSB0 Baud=921600 Dial Command = ATDT Baud=115200 init1=ATZ init2=AT+CRM=1 Flow Control= Hardware (CRTSCTS) Username = Password = Phone = #777 Stupid Mode = 1
Now you can connect to the internet using wvdial.
Note: The modprobe method will not work with newer linux kernels as usbserial is integrated in kernel. See this post for kernel boot configuration.

One Trackback
[...] your system and use wvdial to connect to internet. You can find information on using wvdial from this post This entry was posted in Configuration, Grub, Hardware, Linux, Networking, Scripts, Ubuntu and [...]