PDA

Ver la Versión Completa : [ CONSULTA ] como hacer TETHERING con un BlackBerry Torch 9800


rmosqueda
07/07/11, 21:26:42
Hola a todos, primero debo indicarles que soy nuevo en esto...Desde hace 3 semanas tengo una Archos 101 con firmware 2.3.26, el problema es que no he podido hacer tethering con mi BlackBerry Torch 9800 de at&t ..me he documentado al respecto en varios foros y por sugerencia del forista dervari, de la pagina http://forum.archosfans.com/viewtopic.php?f=63&t=46116&hilit=blackberry sugiere hacer unos cambios en las rutas:
/system/etc/ppp/peers/tether
#debug
# connection
crtscts
hide-password
nodetach
# peer parameters
noauth
# most gprs phones don't reply to lcp echo
lcp-echo-interval 0
lcp-echo-failure 0
# dns, routing
ipcp-accept-remote
ipcp-accept-local
defaultroute
#replacedefaultroute # not currently supported by our pppd
noipdefault
usepeerdns
# avoid compression
novj
novjccomp
noccp
nobsdcomp
nopcomp
noaccomp
# connect scripts
connect '/system/xbin/chat -v -t3 -f /data/tether_start'
disconnect '/system/xbin/chat -v -t3 -f /etc/chatscripts/tether_stop'
http://forum.archosfans.com/images/spacer.gifhttp://forum.archosfans.com/images/spacer.gifhttp://forum.archosfans.com/images/spacer.gifhttp://forum.archosfans.com/images/spacer.gifAqui cambiar el novj por #novj

y en la ruta: /system/bin/tether_start_dun.sh
#!/bin/sh

# $1 is the mac address of the phone
# $2 is the channel
# $3 is the user (not a mandatory argument)
# $4 is the password (not a mandatory argument)

if [$# -eq 4 ]
then
/system/xbin/dund --connect $1 --channel $2 --pppd /system/bin/pppd /dev/rfcomm0 115200 mru 1280 mtu 1280 name $3 password $4 call tether
else
/system/xbin/dund --connect $1 --channel $2 --pppd /system/bin/pppd /dev/rfcomm0 115200 mru 1280 mtu 1280 call tether
fi

Cambiar if [$# -eq 4 ] por if [ $# -eq 4 ]

porsupuesto que primero hay que instalar el SDE y luego ROOTEAR con initramfs.cpio.gz + zImage para que con SSHDroid y WinSCP poder accesar a estas lrutas y cambiarlas

Hasta aqui todo bien...el problema esta en que lo anterior corresponde al firmware 2.3.26...pero ahora actualicé al firmware 2.3.81 y estas lineas cambiaron:
/system/etc/ppp/peers/tether
#debug
# connection
crtscts
hide-password
nodetach
# peer parameters
noauth
# most gprs phones don't reply to lcp echo
lcp-echo-interval 0
lcp-echo-failure 0
# dns, routing
ipcp-accept-remote
ipcp-accept-local
defaultroute
#replacedefaultroute # not currently supported by our pppd
noipdefault
usepeerdns
# avoid compression
# novj is now an option
novjccomp
noccp
nobsdcomp
nopcomp
noaccomp
# connect scripts
connect '/system/xbin/chat -v -t3 -f /data/tether_start'
disconnect '/system/xbin/chat -v -t3 -f /etc/chatscripts/tether_stop'

/system/bin/tether_start_dun.sh
#!/bin/sh

# $1 is the mac address of the phone
# $2 is the channel
# $3 is the user (not a mandatory argument)
# $4 is the password (not a mandatory argument)
# $5 is the novj option
MAC=$1
CHANNEL=$2
USER=$3
PWD=$4
NOVJ=$5

if [ "$USER" = "" ]
then
/system/xbin/dund --connect $MAC --channel $CHANNEL --pppd /system/bin/pppd /dev/rfcomm0 115200 mru 1280 mtu 1280 $NOVJ call tether
else
/system/xbin/dund --connect $MAC --channel $CHANNEL --pppd /system/bin/pppd /dev/rfcomm0 115200 mru 1280 mtu 1280 $NOVJ name $USER password $PWD call tether
fi

MI PREGUNTA ES :
.- SIGNIFICA QUE CON ESTOS CAMBIOS EN LA VERSION 2.3.81 SE SOLUCIONA EL PROBLEMA DEL TETHERING CON EL BLACKBERRY ?...YO PROBÉ Y TODAVIA NO ME FUNCIONAhttp://www.htcmania.com/images/icons/icon9.gif
.- ALGUIEN HA PROBADO HACER TETHERING CON EL BLACKBERRY CON LA VERSION 2.3.81 ?

rmosqueda
10/07/11, 19:23:19
Para los que tengan un movil Blackberry con MOVISTAR en Venezuela y quieran hacer Tethering con el Archos, tienen que colocar en la configuración del Tethering ( AÑADIR PERFIL ):

APN: internet.movistar.ve
USUARIO: movistar
PASS: movistar

con esto ya se logra un enlace ( tethering ) entre el Archos y el Blackberry, pero les advierto que es lento para abrir alguna pagina en internet :cry:, es bueno para accesar al TWITTER o instalar APP desde ANDROID MARKET.:pensando: