LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Red Hat (https://www.linuxquestions.org/questions/red-hat-31/)
-   -   Paired bluetooth phone as a modem, wvdial not working. (https://www.linuxquestions.org/questions/red-hat-31/paired-bluetooth-phone-as-a-modem-wvdial-not-working-732584/)

lifeforce4 06-12-2009 06:27 PM

Paired bluetooth phone as a modem, wvdial not working.
 
Alright I've pretty much fumbled around the net trying to piece things together and in IRC(not much help) to get this working. I can get the computer to pair with my phone. Now that I have it where the pairing is working, I just need to get the modem part working. I am using wvdial, rfcomm, and hcid.

Here are my configuration files. I cant seem to get wvdialconf /etc/wvdial.conf to work it cant seem to detect the modem. I've run
Code:

/etc/init.d/bluetooth restart
just to check the connection and make sure that was not the issue.

Is there anything I am missing? It seems what I am trying to do s taboo since no one seems to answer any of my question. Haha

Thank you,
Kyle

Code:

#
# HCI daemon configuration file.
#

# HCId options
options {
        # Automatically initialize new devices
        autoinit yes;

        # Security Manager mode
        #  none - Security manager disabled
        #  auto - Use local PIN for incoming connections
        #  user - Always ask user for a PIN
        #
        security auto;
        pin_helper /etc/bluetooth/feed-bin.sh;

        # Pairing mode
        #  none  - Pairing disabled
        #  multi - Allow pairing with already paired devices
        #  once  - Pair once and deny successive attempts
        pairing multi;

        # Default PIN code for incoming connections
        passkey "1234";
}

# Default settings for HCI devices
device {
        # Local device name
        #  %d - device id
        #  %h - host name
        name "%h";

        # Local device class
        class 0x120104;

        # Default packet type
        #pkt_type DH1,DM1,HV1;

        # Inquiry and Page scan
        iscan enable; pscan enable;
        discovto 0;
        auth enable;

        # Default link mode
        #  none  - no specific policy
        #  accept - always accept incoming connections
        #  master - become master on incoming connections,
        #            deny role switch on outgoing connections
        lm accept;

        # Default link policy
        #  none    - no specific policy
        #  rswitch - allow role switch
        #  hold    - allow hold mode
        #  sniff  - allow sniff mode
        #  park    - allow park mode
        lp rswitch,hold,sniff,park;
}

Code:

#
# RFCOMM configuration file.
#

#rfcomm0 {
#      # Automatically bind the device at startup
#      bind no;
#
#      # Bluetooth address of the device
#      device 11:22:33:44:55:66;
#
#      # RFCOMM channel for the connection
#      channel 1;
#
#      # Description of the connection
#      comment "Example Bluetooth device";
#}
rfcomm0 {
        # Automatically bind the device at startup
        bind yes;

        # Bluetooth address of the device
        device 00:XX:XX:XX:XX:XX;

        # RFCOMM channel for the connection
        # Found by running command : sdptool search DUN
        channel 3;

        # Description of the connection
        comment "Blackberry";
}



All times are GMT -5. The time now is 06:13 PM.