WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: [SOLVED] huawei e620 pcmcia does not work on tinycore linux 4.7.6  (Read 2150 times)

Offline paskali

  • Jr. Member
  • **
  • Posts: 71
Hi all, i have a pcmcia connect card huawei e620 branded vodafone italia. Surfing on internet i see that should work well on linux also with other brands (i use wind italia) but, unfortunatelly, on tiny core it does not. i have tried with many wvdial configurations and also to change the dns's on resolve.conf but after 10 minutes internet stops to work; however the connection remains alive (the led indicates this) but without data exchange.

I post here because i am sure is a kernel / module problem that suffers tiny core.
« Last Edit: January 27, 2014, 11:04:41 AM by paskali »

Offline paskali

  • Jr. Member
  • **
  • Posts: 71
Re: [SOLVED] huawei e620 pcmcia does not work on tiny core linux
« Reply #1 on: January 27, 2014, 11:03:53 AM »
I have solved, it is not a tinycore problem but a network problem. I have had to write a wvdial config file to connect either gprs or 3g network.

/opt/etc/wind-huawei_e620.conf

Code: [Select]
[Dialer Defaults]
Init2 = ATZ
Init3 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init4 = AT+CGDCONT=1,"IP","internet.wind"
Modem = /dev/ttyUSB0
Phone = *99#
Idle Seconds = 0
Password = CARD
Username = CARD
Modem Type = Analog Modem
Carrier Check = no
Stupid Mode = 1
Compuserve = 0
Baud = 460800
New PPPD = yes
PPPD Path=/usr/local/sbin/pppd
Auto DNS = 1
Dial Command = ATDT
Ask Password = 0
ISDN = 0

[Dialer 3g]
Init1 = AT\^SYSCFG=14,2,3fffffff,0,1

[Dialer gprs]
Init1 = AT\^SYSCFG=13,1,3fffffff,0,0

Code: [Select]
sudo wvdial -C /opt/etc/wind-huawei_e620.conf 3g &
to connect to 3g network;

Code: [Select]
sudo wvdial -C /opt/etc/wind-huawei_e620.conf gprs &
to connect to gprs network.

Please note these settings work with huawei internet keys only.
« Last Edit: January 28, 2014, 01:33:09 PM by paskali »