Jump to content
Reliance Jio & Reliance Mobile Discussion Forums

paraj

Members
  • Content count

    7
  • Joined

  • Last visited

Community Reputation

0 Neutral

About paraj

  • Rank
    Newbie

Previous Fields

  • Full Name
    PARAJ SINGHAL
  • City
    Dehradun
  • Reliance Mobile Handset
    Nokia 3125
  1. Improve Browsing Speed With Treewalk Dns?

    hi linux boy, i too use linux to connect to the net....so ill be grateful if u tell me the procedure to set up the router / dns server thanx in advance bye
  2. RConnect & Linux

    hi binil problem seem to be with ur resolv.conf file.....check out the /etc/resolv.conf.....most probably it will be empty...so add these two lines to ur resolv.conf name server 202.138.103.100 name server 202.138.97.197 this may help u...tell me if it works or not... bye
  3. RConnect & Linux

    what kernel are u using .... the device is definitely added.... maybe u can try out 'dmesg | grep tty' at the terminal and see if u find any device with ttyUSBx also enable the haldaemon, maybe it help in finding the device as for the command not found error i have'nt used any such command....so erase all the files....make them again.....it will definitely work....if u still have problem mail me....also check out if there is a .ppprc file in ur root directory as it conflicts with options file..do reply ....next time give me the exact output the script gives bye
  4. RConnect & Linux

    hi Karthi keyan, have u tried out the solution i posted . it has worked for most of the nokia phones. infact its the only working solution on this forum so do try it out. its the last post on page 3 of this topic . and do inform me if it works or not . bye paraj
  5. RConnect & Linux

    hi kavita as for your command not found error, have you set USERNAME=9323170906 if thats ur phone no. try to check out your ppp-on again for errors. ya u pointed out correctly, initially i did write account and password in ppp-on but decided against passing them on. so yes you can delete ACCOUNT and PASSWORD from export command in the ppp-on shell script. you are sending your username as 229323170906. try using it without 22 . i do the same. if you're already doing the same check out for the /root/.ppprc file on your system and correct the username and password in this file. this is actually created if you install rconnect for linux. if that too doesnt work try deleting the /root/.ppprc file. i hope this is gonna help you. try this out and inform me if it works or not. bye
  6. RConnect & Linux

    the correct initialization string is AT+CRM=1;+CSO=33 i use nokia 3125 but still had some problem connecting via kppp. i case you have the same try out the scripts i posted earlier on the same topic
  7. RConnect & Linux

    hi everyone i registered to this site a few days ago and find that many people are having problems running internet from their NOKIA handsets on linux. I have a NOKIA 3125 and this is how I did it. I made two configuration files. The first is the file that gives pppd its options and the second is the file that tells pppd the username and password to use in order to log into the ISP. File: /etc/ppp/options Perms: 640 (-rw-r-----) Owner: root.root This is the pppd options file. It looks like the following (without the dashes): --------------------------- updetach modem lock crtscts defaultroute asyncmap 0 --------------------------- File: /etc/ppp/pap-secrets Perms: 640 (-rw-r-----) Owner: root.root This is the file that contains the username and password for the ISP. The password must be in clear text. It should look like the following (without dashes): --------------------------- username * password --------------------------- I also made three script files These are the files that actually connect you to the ISP. There are a total of three scripts that connect and disconnect you from the Internet. File: /etc/ppp/ppp-on perms: 750 Owner root.root This is the actual connect script. You will need to edit the script with your username and telephone number to dial in the correct locations, after which, run it and you should connect. --------------------------- #!/bin/sh USERNAME= # Your username goes here TELEPHONE=#777 # The telephone number you dial to connect LOCAL_IP=0.0.0.0 # Local IP address if known. Dynamic = 0.0.0.0 REMOTE_IP=0.0.0.0 # Remote IP address if desired. Normally 0.0.0.0 export TELEPHONE ACCOUNT PASSWORD DIALER_SCRIPT=/etc/ppp/ppp-on-dialer exec /usr/sbin/pppd debug /dev/ttyUSB0 115200 name $USERNAME \ $LOCAL_IP:$REMOTE_IP \ connect $DIALER_SCRIPT # use /dev/USB* or /dev/ACM* as per your requirement cat /etc/resolve.conf >> /etc/resolv.conf ---------------------------- File: /etc/ppp-on-dialer Perms: 750 Owner: root.root This script actually performs the dialing function. It receives the telephone number from ppp-on. If you wish, you may add a modem initialization string where indicated. If you do not wish for a initialization string then remove the line completely. ---------------------------- #!/bin/sh exec /usr/sbin/chat -v \ TIMEOUT 3 \ ABORT '\nBUSY\r' \ ABORT '\nNO ANSWER\r' \ ABORT '\nRINGING\r\n\r\nRINGING\r' \ '' \rAT \ 'OK-+++\c-OK' ATH0 \ OK 'AT+CRM=1;+CSO=33' \ TIMEOUT 30 \ OK ATDT$TELEPHONE \ CONNECT '' \ ---------------------------- File: /etc/ppp/ppp-off Perms: 750 Owner: root.root This is the script that will disconnect you from the Internet. No modifications are necessary. ---------------------------- #!/bin/sh if [ "$1" = "" ]; then DEVICE=ppp0 else DEVICE=$1 fi if [ -r /var/run/$DEVICE.pid ]; then kill -INT `cat /var/run/$DEVICE.pid` if [ ! "$?" = "0" ]; then rm -f /var/run/$DEVICE.pid echo "ERROR: Removed stale pid file" exit 1 fi echo "PPP link to $DEVICE terminated." exit 0 fi echo "ERROR: PPP link is not active on $DEVICE" exit 1 ---------------------------- also create /etc/resolve.conf as follows nameserver 202.138.103.100 nameserver 202.138.97.193 nameserver 127.0.0.1 now to run the script cd /etc/ppp sh ppp-on and ENJOY!!!!! sometome ppp-off does not disconnect then killall pppd and then sh ppp-on again data call definitely end now I FEEL this WILL WORK ON ANY NOKIA PHONE. IN CASE IT DOESNT PLEASE POST YOUR PROBLEM IF IT DOES THEN TOO PLEASE SHARE YOUR EXPERIENCE
×