BSNL Dataone connection in Fedora 8

Status
Not open for further replies.

bhushan2k

Genius in making mistakes
Hi guys....m totally new for linux...i've installed fedora 8....but m not able 2 do internet connection setup....i've used ubuntu....and i know how 2 do network connection setup thru "sudo pppoe" command....so plz help me how 2 do network connection in fedora 8...i hv bsnl dataone internet n hv PRONET External ADSL Router....which requires only user name n password to make an internet connection...plz gv stepwise procedure...thnx....
 

Faun

Wahahaha~!
Staff member
i hav the same router PN-ADSL 101E/U

just make it to bridge mode.

setup the connection in router itself. why do u want to go for a dialer ?
 
OP
bhushan2k

bhushan2k

Genius in making mistakes
ya i know dat...it setups itself automatically...but how can i configure my NIC....i meant how can i configure dat username and password setup....thnx...
 

abhinandh

Proud to be Linux
you find this useful

*moving-tolinux.blogspot.com/2007/10/setting-up-dataone-broadband-connection.html
 
OP
bhushan2k

bhushan2k

Genius in making mistakes
ya man.....cuz i also gv only use id n password 2 log in bsnl internet account in windows....so it wont required ny ip setup......thats why i asked dat how do i can do dat kinda setup in fedora 8......thnx...
 

praka123

left this forum longback
I can help u may be :D
In fedora,u can use system-config-network to make the connection.
still,
try this if u r on bridge mode(ie,u dial from ur window$ system to get connected).
open a terminal,
run
"su -"
give root's passwd.
run /sbin/pppoe-setup.
once finished,use as root(# prompt) "pppoe-connect &" to get connected.


another way,
press ALT+F2 to get run box.inside type.
Code:
gksu gedit /etc/ppp/peers/internet
It open gedit editor the file "internet"
copy below lines to it:-
Code:
noipdefault
defaultroute
hide-password
#lcp-echo-interval 30
#lcp-echo-failure 4
noauth
persist
#mtu 1492
usepeerdns
plugin rp-pppoe.so eth0
user "[B]urusername[/B]"
save and exit.remember to give ur broadband username in between the quote(boldletters).

now again open run dialog box(ALT+F2).
run:-
Code:
gksu gedit /etc/ppp/chap-secrets
then give ur username and passwd in below format
Code:
 "[B]urusername[/B]"    [B]*[/B]  "[B]urpasswd[/B]"
save and exit.(* is there!).

now make sure ur lan card is detected(see /sbin/ifconfig output for eth0 and lo interfaces).
now as root(# prompt use "su" to achieve)
dial
Code:
pon internet
will hopefully connect.
if it cannot,do as below:-
Code:
route add default ppp0
to disconnect,use
Code:
poff

try this only if above method(pppoe-setup) doesnot work! :)
 
Status
Not open for further replies.
Top Bottom