LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to connect using E250 samsung mobile modem (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-connect-using-e250-samsung-mobile-modem-645187/)

mlandvodm 05-27-2008 06:37 PM

how to connect using E250 samsung mobile modem
 
Pliz help

im using Mandrake 2005 linux OS, im trying to connect to the
internet using Samsung E250 mobile USB modem.how do i configure
this modem on linux. are there any drivers? pliz help.

Affy 06-17-2008 01:11 PM

I'm also using the same phone but another linux os UBUNTU 7.10.If you got connected pls help me out.

ahmsayed 09-19-2008 08:39 AM

there is nothing driver in linux for that phone
i try but fild

Affy 09-20-2008 08:56 AM

Hey guys I finally find the solution on connecting GPRS set to pc running with linux.......
Heres the URL where u find the sol............

Affy 09-20-2008 09:02 AM

http://bayanijuan.blogspot.com/searc...p990i+in+linux

ahmsayed 09-21-2008 05:28 PM

but thos files for motorila and nokia !! where samsung ??

parijat.chauhan 09-25-2008 06:10 AM

SAMSUNG doesn't seem to work with Linux....
here i m using SAMSUNG SGH-P310 it also not able to connect.
wvdial tries for a while but then connection terminates and modem hangs.
if u find solution plz post it.

bye bye

parijat.chauhan 03-15-2009 12:34 PM

Solution to all these problems
 
Well guys...i m posting this message in case if any one of you still facing problem in connecting dial-up over mobile-phone.
i hav used this method to successfully connect to my Samsung SGH-P310
phone. i should remind you tht "wvdial" is not able to connect successfully with this phone or some other phone from Samsung and possibly
other Vendors too.

If you still unable to connect , lets keep posting to this thread.

Here is Procedure...................................................

we will create two files[ i assume you are connecting using USB cable]
1. chatscript
2. connection
/////////\\\\\\\\\///////////\\\\\\\\\\\\
$nano chatscript

TIMEOUT 30
ECHO ON
ABORT '\nBUSY\r'
ABORT '\nERROR\r'
ABORT '\nNO ANSWER\r'
ABORT '\nNO CARRIER\r'
ABORT '\nNO DIALTONE\r'
ABORT '\nRINGING\r\n\r\nRINGING\r'
'' \rAT
OK 'AT+CGDCONT=1,"IP","airtelgprs.com"'
OK ATD*99***1#
CONNECT ""

------------------------------------------------------------------------
Remember here:
Access point for my Internet service provider is airtelgprs.com and you should change it to according to your service provider.

Dialing number is *99***1#
you should also change it according to your service provider
=-----------------------------------------------------------------------
$nano connection


debug
nopcomp
noaccomp
nomagic
receive-all
noccp
novj
novjccomp
noauth
connect "/usr/sbin/chat -v -f /etc/ppp/chatscript"
usepeerdns
/dev/ttyACM0 115200
defaultroute
lcp-echo-failure 0

------------------------------------------------------------------------
here ttyACM0 is my mobile modem node.
------------------------------------------------------------------------
//////////\\\\\\\\\\///////////\\\\\\\\\\\\

after creating these two files

#mv connection /etc/ppp/peers
#mv chatscript /etc/ppp

now dial the connection as

#/usr/sbin/pppd call connection
this will dial the connection. you can watch dialing progress through reading log file

#tail -f /var/log/messages

************************************************************************
for easily connecting each time ,make a script, say connectinternet.sh
and put it into /usr/sbin
$nano connectinternet.sh

#!/bin/sh
/usr/sbin/pppd call connection
tail -f /var/log/messages

save the file

$chmod +x connectinternet.sh
#mv connectinternet.sh /usr/sbin

now you have to use only

#connectinternet.sh

and you will be connected.
************************************************************************

hope this post will help somebody. for further clarification you can mail me at parijat.chauhan@aol.in


All times are GMT -5. The time now is 06:33 AM.