You are not logged in.

#1 2011-01-31 11:49:40

bilgee0629
Member
Registered: 2011-01-29
Posts: 57

[SOLVED] pppoe is not working

I've been trying to configure my pppoe configuration for 2 days since i've installed gnome by when i'm configured my pppoe in black screen. But after installing gnome, my pppoe is not working. But /etc/rc.d/adsl start shows [DONE] , then i saw ifconfig, it's seen as normal. But when i ping google.com , it's not working. Also I've struggled to configure my pppoe in black screen for a day. please help me!

Last edited by bilgee0629 (2011-02-02 02:32:28)

Offline

#2 2011-01-31 11:52:25

bilgee0629
Member
Registered: 2011-01-29
Posts: 57

Re: [SOLVED] pppoe is not working

Also i use xubuntu, first i've used pppoe in my xubuntu. Then I logged into Arch linux. My ISP doesn't permit to use internet by 2 different computer in a day. Or just it's serving?

Offline

#3 2011-01-31 12:49:23

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: [SOLVED] pppoe is not working

It's not really a solution to your problem, but if your ISP only allows one IP address (or even one registered MAC address), why not get a cheap router?


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#4 2011-01-31 23:19:29

fukawi2
Ex-Administratorino
From: .vic.au
Registered: 2007-09-28
Posts: 6,224
Website

Re: [SOLVED] pppoe is not working

There is little useful information about the problem in your post.

What is the output of the following commands in Arch after you run /etc/rc.d/adsl start?

ifconfig -a
route -n
cat /etc/resolv.conf

Offline

#5 2011-02-01 06:55:25

bilgee0629
Member
Registered: 2011-01-29
Posts: 57

Re: [SOLVED] pppoe is not working

Today i've tried to connect to the internet first from my Arch Linux. But it's not working.

Here is my ifconfig result:
eth0      Link encap:Ethernet  HWaddr 00:0B:6A:A3:4D:90 
          inet addr:10.200.0.49  Bcast:10.200.0.49  Mask:255.255.255.255
          inet6 addr: fe80::20b:6aff:fea3:4d90/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:136 errors:0 dropped:0 overruns:0 frame:0
          TX packets:46 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:10119 (9.8 Kb)  TX bytes:3150 (3.0 Kb)
          Interrupt:17 Base address:0xd400

lo        Link encap:Local Loopback 
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:1 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:84 (84.0 b)  TX bytes:84 (84.0 b)

ppp0      Link encap:Point-to-Point Protocol 
          inet addr:49.0.138.202  P-t-P:99.99.99.99  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1492  Metric:1
          RX packets:4 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:3
          RX bytes:52 (52.0 b)  TX bytes:64 (64.0 b)

Here is cat /etc/resolv.conf:

nameserver 203.34.37.3

Here is the route -n result:
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
99.99.99.99     0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
0.0.0.0         0.0.0.0         0.0.0.0         U     202    0        0 eth0

For sure, i've also attached my xubuntu cat /etc/resolv.conf:
nameserver 203.34.37.3

here is the route -n result of my xubuntu:

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
99.99.99.99     0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 ppp0

PS: i really wanna use Arch Linux

Last edited by bilgee0629 (2011-02-01 07:00:10)

Offline

#6 2011-02-01 09:21:33

fukawi2
Ex-Administratorino
From: .vic.au
Registered: 2007-09-28
Posts: 6,224
Website

Re: [SOLVED] pppoe is not working

(Please use code tag in future to show these kinds of things)

Routing is your problem -- your default route isn't being set correctly in Arch:

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
99.99.99.99     0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
0.0.0.0         0.0.0.0         0.0.0.0         U     202    0        0 eth0

Compared to your Xubuntu:

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
99.99.99.99     0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 ppp0

The default route in Xubuntu is via ppp0 (correct), whereas in Arch it's eth0 (wrong).

Make sure you have set "defaultroute" in '/etc/ppp/peers/your_provider' as per https://wiki.archlinux.org/index.php/PP … _with_pppd

Offline

#7 2011-02-01 09:49:35

bilgee0629
Member
Registered: 2011-01-29
Posts: 57

Re: [SOLVED] pppoe is not working

Thanks, i did it. Also i followed a script guide from official wiki. Now I'm installing my nvidia driver smile Arch Linux is rockin'

Offline

#8 2011-02-01 11:30:57

bilgee0629
Member
Registered: 2011-01-29
Posts: 57

Re: [SOLVED] pppoe is not working

How to mark it is solved?

Offline

#9 2011-02-01 15:06:39

bernarcher
Forum Fellow
From: Germany
Registered: 2009-02-17
Posts: 2,281

Re: [SOLVED] pppoe is not working

bilgee0629 wrote:

How to mark it is solved?

Just edit your first post.


To know or not to know ...
... the questions remain forever.

Offline

Board footer

Powered by FluxBB