Pppoe doenst come up mikrotik openwrt

Hi Folks,
i am back with some configuration topic i give up after several days and googling.

Here is my setup:
Zyxel vmg3006-b70a (as Modem vdsl100) works fine. behind that an Mikrotik rb750gr3 with openwrt latest version.
Internetprovider is 1und1 in Germany.

I could find many sources for configuring the PPPoE. But finally used the one in the openwet config for German vdsl. Unfortunately it doesn't work also. I figured out i need to configure a vlan with ID7 but error is same
Error: pppd: Timeout waiting for PADO packets.

Maybe i am lucky and somebody is having it running :slight_smile:

Here is my config:

config interface 'loopback'
	option device 'lo'
	option proto 'static'
	option ipaddr '127.0.0.1'
	option netmask '255.0.0.0'

config globals 'globals'
	option packet_steering '1'
	option ula_prefix 'fd79:b:2129::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'lan2'
	list ports 'lan3'
	list ports 'lan4'
	list ports 'lan5'

config device
	option name 'lan2'
	option macaddr '18:fd:86:a6'

config device
	option name 'lan3'
	option macaddr '18:fd6:a6'

config device
	option name 'lan4'
	option macaddr '18:fe:86:a6'

config device
	option name 'lan5'
	option macaddr '18:fd::6'

config interface 'lan'
	option device 'br-lan'
	option proto 'static'
	option netmask '255.255.255.0'
	option ip6assign '60'
	option ipaddr '192.168.1.200'

config device
	option name 'wan'
	option macaddr '18:f:86:a5'

config dsl 'dsl'
	option annex 'b'
	option tone 'auto'
	option xfer_mode 'ptm'
	option line_mode 'vdsl'

config interface 'wan'
	option proto 'pppoe'
	option password 'xxxxx'
	option ipv6 'auto'
	option device 'eth0.7'
	option username 'H1und1/xxxxxx@online.de '

config interface 'wan6'
	option device 'wan'
	option proto 'dhcpv6'

config device
	option type '8021q'
	option ifname 'eth0'
	option vid '7'
	option name 'eth0.7'

I assume you're read the old 1und1 threads, here on the forum ?

Use wan.7 as the pppoe device instead of eth0.7. On a DSA kernel, eth0 is an internal connection that is not usable directly. So remove all references to eth0 from your configuration. There's also no need to declare devices of type 8021q but LuCI seems to want to do that.

Yes it's confusing that one of the Ethernet ports is named wan as well as a network interface, but the two things are not related.

1 Like

i read the topic ISP Config on openwrt.org

Thanks mk24,
i will check on thursday ( which is my next time slot for configurations ;-))

Hi mk24, you info did the trick.
Thank You very much. I created in Luci an wan.7 and configured the pppoe to use it and. tada.

Great
thx
Jens

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.