A conexão UMTS falha com “LCP terminado por peer”

2

Eu uso o cartão Ericsson N5321 gw no meu Lenovo Thinkpad T440s para me conectar ao T-Mobile (revendido por debitel) com o seguinte /etc/wvdial.conf (no debian sid x64):

[Dialer Defaults]
Modem = /dev/ttyACM2
Baud = 460800

Phone = *99#
Username = t-mobile
Password = tm
Stupid Mode = 1

Modem Type = USB Modem
New PPD = yes

Dial Command = ATDT
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init3 = AT+CGDCONT=1,"IP","internet.t-mobile"

No entanto, quando tento conectar, o ppd falha com o código 16 e log:

Aug  3 09:47:01 t4 pppd[3592]: CHAP authentication succeeded:
Congratulations!
Aug  3 09:47:01 t4 pppd[3592]: CHAP authentication succeeded
Aug  3 09:47:01 t4 pppd[3592]: LCP terminated by peer
Aug  3 09:47:01 t4 pppd[3592]: Modem hangup

Como faço a conexão funcionar?

    
por phihag 03.08.2014 / 10:21

1 resposta

2

Para realmente usar o modem para uma conexão com a Internet, você precisa ativá-lo com o comando AT+CFUN . Modifique wvdial.conf para enviar AT+CFUN=1 :

[Dialer Defaults]
Modem = /dev/ttyACM2
Baud = 460800
ISDN = 0

Phone = *99#
Username = t-mobile
Password = tm
Stupid Mode = 1

Modem Type = USB Modem
New PPD = yes

Dial Command = ATDT
Init1 = ATZ
Init2 = AT+CFUN=1
Init3 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init4 = AT+CGDCONT=1,"IP","internet.t-mobile"
    
por 03.08.2014 / 10:21

Tags