ADSL on Debian

Hi.

Tired of lengthy manuals about ADSL setup, here is a copy+paste (with a bit of editing) from an email I’ve sent once (year 2005).

apt-get install ppp pppoe

### summary of changes ###
file /etc/ppp/options:
    change "auth" to "noauth"
    add "plugin /usr/lib/pppd/2.4.3/rp-pppoe.so"
file /etc/ppp/pap-secrets:
    "MYUSER@MYPROVIDER" * "MYPASSWORD" *
file /etc/ppp/peers/dsl-provider:
    "user" -> "MYUSER@MYPROVIDER"
    on line with "pty" - change eth0 to correct interface
        (eth1 in my case, but should usually be eth0)

manual start:
    pppd call dsl-provider
auto start:
    file /etc/network/interfaces:
        ###
        auto ppp0
        iface ppp0 inet ppp
            provider dsl-provider
        ###
### end of changes ###

Use at your own risk.
Hope that helps.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s