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/viewtopi...lit=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'




Aqui 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 i
nitramfs.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 FUNCIONA

.- ALGUIEN HA PROBADO HACER TETHERING CON EL BLACKBERRY CON LA
VERSION 2.3.81 ?