Internet GPRS через Bluetooth на notebook'е

Вообщем есть notebook hp compaq 6510b
смартфон nokia E65
оператор - МТС
Довольно часто при подключении выдается следующее:

Waiting for connect...

Serial connection established.
Using interface ppp0
Connect: ppp0 <--> /dev/rfcomm0
Serial line is looped back.
Connection terminated.

Как правило когда хочу соединиться сначало пару раз такое, а потом соединяется, не могу понять в чем дело...
Вот конфиги:

/etc/ppp/peers/gprs:

/dev/rfcomm0 115200
115200
noauth
usepeerdns
user mts
defaultroute
noipdefault
connect /etc/ppp/peers/gprs-connect

/etc/ppp/peers/gprs-connect:

#!/bin/bash
exec chat -vS \
'' \rAT \
TIMEOUT 12 \
OK ATH \
OK ATE1 \
OK 'AT+CGDCONT=1,"IP","internet.mts.ru"' \
OK ATD*99# \
TIMEOUT 22 \
SAY "\nWaiting for connect...\n"
SAY "\nGPRS connected.Enjoy..."
CONNECT ''
CONNECT

/etc/bluetooth/rfcomm.conf:

#
# RFCOMM configuration file.
#

rfcomm0 {
# Automatically bind the device at startup
bind no;

# Bluetooth address of the device
device 10:14:A3:78:32:17;

# RFCOMM channel for the connection
channel 2;

# Description of the connection
comment "Dial-Up Nokia E65";
}

Соответственно для соединения выполняю:
rfcomm bind 0
pppd call gprs nodetach

Есть какие либо соображения по этому поводу? Может кто сталкивался уже с таким?

P.S.
Заранее боагодарен.

Вот меня другой

Вот меня другой вопрос интересует, почему нельзя воспользоваться стандартным для gentoo методом:

добавить в /etc/conf.d/net

config_ppp0=( "ppp" )
link_ppp0="/dev/rfcomm0"
username_ppp0='mts'
password_ppp0='mts'
pppd_ppp0=( "115200 modem crtscts defaultroute usehostname updetach noipdefault  usepeerdns")
chat_ppp0=(
        'ABORT' 'BUSY'
        'ABORT' 'ERROR'
        'ABORT' 'NO ANSWER'
        'ABORT' 'NO CARRIER'
        'ABORT' 'NO DIALTONE'
        'ABORT' 'Invalid Login'
        'ABORT' 'Login incorrect'
        'TIMEOUT' '5'
        '' 'ATZ'
        'OK' 'AT+CGDCONT=1,"IP","internet.mts.ru"'
        'TIMEOUT' '60'
        'OK' 'ATDT*99***1#'
        'CONNECT' ''
        'TIMEOUT' '5'
        '~--' ''
)

и сделать ссылку /etc/init.d/net.ppp0 -> /etc/init.d/net.lo

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".