Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Sep 2005 10:19:26 +0200
From:      "Schleich, Arno" <A.Schleich@klinikum-tut.de>
To:        "cpghost" <cpghost@cordula.ws>
Cc:        aschleichmd@hotmail.com, freebsd-questions@freebsd.org
Subject:   AW: PPPoE to connect to T-DSL
Message-ID:  <BD115D417B32A745A5D9AC08CF1A620C44CFB3@ktex1.kktut.local>

next in thread | raw e-mail | index | archive | help
Cpghost,

Tx a lot, I managed to connect as root. Your ppo.conf was nearly =
identical to trhe one I had used with the exception to 'disable lqr' (I =
had it enabled) and 'set echoperiod 30'/ 'enable echo'. After adding =
these it worked, don't ask me why.
Still have the problem of no ppp as an ordinary user (member of wheel, =
network), Is there anything I need to do besides adding 'allow users =
<user_name> ?

Thanks, Arno

-----Urspr=FCngliche Nachricht-----
Von: cpghost [mailto:cpghost@cordula.ws]=20
Gesendet: Donnerstag, 8. September 2005 15:08
An: Schleich, Arno
Cc: freebsd-questions@freebsd.org
Betreff: Re: PPPoE to connect to T-DSL


On Thu, Sep 08, 2005 at 02:32:19PM +0200, Schleich, Arno wrote:
> I just need to connect my notebook to the internet using pppoe to hook
> up to t-dsl, a German adsl provider.
> =20
> I installed 5.4 Release with very few problems.
> =20
> Anyway, trying to use the most generic ppp.conf it hangs in 'Phase' =
(as
> far as I can understand the log). It redials and redials, which =
results
> in multiple
> =20
> deflink: Connected
> deflink: Hangup
> =20
> sequences in the /var/lod/ppp.log. Btw, I upped the rl0 interface =
prior
> to starting ppp, so I hope this is not an issue. There is no activity =
on
> the LEDs of the dsl modem.

Hello Arno,

I know definitely that the following configuration works with
kamp-dsl, a provider that uses t-dsl (yes, on FreeBSD 5.4-STABLE).

/etc/ppp/ppp.conf:
------------------

default:
  set log local Phase Chat Connect LCP IPCP tun command

myadsl:
  set device PPPoE:rl0
  set MTU 1460
  set MRU 1460
  set dial
  set crtscts off
  set speed sync
  disable lqr
  set echoperiod 30
  enable echo
  disable deflate
  disable pred1
  disable vjcomp
  disable acfcomp
  disable protocomp
  set log Phase LCP IPCP CCP Warning Error Alert
  set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0
  set login
  set authname <your_authname>
  set authkey <your_authkey>
  set timeout 0
  add default HISADDR
  set server /var/run/internet "" 0177

You can enable ppp at bootup by adding this to /etc/rc.conf:

ppp_enable=3D"YES"
ppp_profile=3D"myadsl"
ppp_user=3D"root"
ppp_mode=3D"ddial"
ppp_nat=3D"YES"

Or run ppp manually like this:

# /usr/sbin/ppp -quiet -ddial -nat myadsl

Should you still not be able to connect, please have a closer
look at /var/log/ppp.log. You may also want to

# tcpdump -i rl0

to see if the PADI/PADO/PADR/PADS handshake completes
successfully.

Good luck!
-cpghost.

--=20
Cordula's Web. http://www.cordula.ws/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?BD115D417B32A745A5D9AC08CF1A620C44CFB3>