May 15, 2024, 11:20:24 PM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: LG LSP-3000 Connection Solution  (Read 3744 times)

Offline mimoh_mi

  • Linux Noob !
  • *
  • Posts: 8
LG LSP-3000 Connection Solution
« 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

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
LG LSP-3000 Connection Solution
« Reply #1 on: January 05, 2006, 05:50:47 PM »
well.. Thank you! for sharing but such things have been already discussed over here. .