Hi,
I'm trying to setup a PPPoE connection to my ISP (solcon.nl). I've read
pppoe(4) and pppoe(8) and got the following configuration:
cat /etc/hostname.pppoe0
inet 0.0.0.0 255.255.255.255 NONE \
pppoedev em2 authproto pap \
authname '<username>@solcon.net' authkey '<password>' up
dest 0.0.0.1
!/sbin/route add default -ifp pppoe0 0.0.0.1
cat /etc/hostname.em2
up
According to my ISP I should specify my IP-address and netmask which makes
the following:
cat /etc/hostname.pppoe0
inet 123.123.123.1 255.255.255.128 NONE \
pppoedev em2 authproto pap \
authname '<username>@solcon.net' authkey '<password>' up
dest 0.0.0.1
!/sbin/route add default -ifp pppoe0 0.0.0.1
In both cases I'm getting "pppoe0: pap failure". This seems to indicate
that the authentications is wrong, but according to my ISP they don't see
any traffic from me to their radius server and we double checked the
username and password.
Since they don't support OpenBSD they gave me a sample config for Cisco:
interface FastEthernet0/0
description LAN klant
ip address 123.123.123.1 255.255.255.128
duplex auto
speed auto
no keepalive
!
interface FastEthernet0/1
description WAN
no ip address
duplex full
speed 100
pppoe enable
pppoe-client dial-pool-number 1
!
interface Dialer0
ip unnumbered FastEthernet0/0
encapsulation ppp
ip tcp adjust-mss 1452
dialer pool 1
dialer idle-time
dialer-group 1
no cdp enable
ppp authentication pap callin
ppp pap sent-username <username>@solcon.net password <password>
!
ip route 0.0.0.0 0.0.0.0 Dialer0 permanent
Any suggestions on what I'm doing wrong or how to configure this?
Kind regards,
Martijn Rijkeboer