Internet connection in Fedora

Status
Not open for further replies.
D

Devrathnd

Guest
How do connect to my dial up account in latest fedora given in digit.

Please give detailed information as i am new to linux
 

anantkhaitan

Burning Bright
The GUI based system-config-network in Fedora/Red Hat based distro uses wvdialer for DialUp kinda connection so perhaps this procedure(distro independent) helps

1> Open Terminal, then
Code:
$ su -
# gedit /etc/wvdial.conf

2> Paste this substituting <value> with appropriate value:
Code:
[Dialer dailup]
Modem = /dev/ttyS0  # Generally it is ttyS0
Baud = 115200
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ISDN = 0
Modem Type = Analog Modem
Phone = <your number>
Username = <username>
Password = <password>
Save and Exit

3> Connect using :
Code:
# wvdial dialup
Disconnect by pressing Ctrl+C
 
Status
Not open for further replies.
Top Bottom