Linux Forums - Linux Help,Advice & support community:LinuxSolved.com

Network Troublshooting => General Networking Support in Linux => Topic started by: mimoh_mi on January 03, 2006, 02:10:02 PM

Title: LG LSP-3000 Connection Solution
Post by: mimoh_mi on January 03, 2006, 02:10:02 PM

I had to use my LG LSP-3000 to connect to the net. The experience was worth the while.
So I have decided to share my solution with people, who might be having the same problems. First and foremost, linux does not auto, detect the modem. So you will have to do
some tweeking with scripts.

1. create the wvdial.conf file as follows and save it at /etc/:
[Modem0]
Modem = /dev/ttyS0
Baud = 115200
SetVolume = 4
Dial Command = ATDT
Init1 = ATZ
FlowControl = CRTSCTS
[Dialer serviceProvider]
Username = username (give by your provider)
Password = password  (  ''      "       ''         "     )
Phone = #777
Stupid Mode = 1
Inherits = Modem0

2.  Run wvdial  serviceProvider
to chect if modem was detected.
Everything should run fine.

3. Create the connection script as follows:
i named it ppprc and saved it at /etc/ppp/
cd to /etc/ppp/ and chmod 755 ppprc

# !/bin/bash
echo "user xxxxx  password xxxxx" > $HOME/.ppprc
pppd /dev/ttyS0 115200 debug  usepeerdns defaultroute noauth connect '/usr/sbin/chat -v "" at+crm=1 OK "atdt#777" CONNECT' mtu 264

finally run the ppprc script and your good to go.
Hope it helps and happy surfing
Title: LG LSP-3000 Connection Solution
Post by: Ricky on January 05, 2006, 05:50:47 PM
well.. Thank you! for sharing but such things have been already discussed over here. .