View Single Post

  #2 (permalink)  
Old 05-16-2008, 12:46 AM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,035
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Hi,

Do you have internal (PCI) or external modem? Internal modems (also known as winmodem are difficult to use due to driver issues. Anyway install your modem. Install software called wvdial and use the same to connect to ISP:
Code:
 yum install wvdial
First COM1 is known as /dev/ttyS0 under Linux see following
How To Check and Use Serial Ports Under Linux

Once serial device identified type the following to configure modem:
Code:
wvdialconf /etc/wvdial.conf
Once modem is detected you need to edit /etc/wvdial.conf configuration file to specify the PPP username, password and dial out Phone number. Open /etc/wvdial.conf using vi text editor:
Code:
vi /etc/wvdial.conf
Here is sample config file:
Code:
[Dialer Defaults]
Modem = /dev/ttyS1
Baud = 115200
Init1 = ATZ
 Phone = 172226
Username = Your-USERNAME
Password = Your-PASSWORD
To connect type
Code:
# wvdial
To disconnect type
Code:
killall wvdial
or
Code:
ifdown ppp0
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote