VDSL2 over PPoE network config options

Hi all.

This my current modem/router working fine.
Untitled

I want to bridge it with a TL-WR1043ND router with a LEDE snapshot installed.

Can someone help me with the network config options?

Thanks

hello,
First, in your screenshot, click Delete for this configuration
Then click Add to create the bridge like this :

On your lede Router, create a wan interface with the Vlan 835, with PPPOE

Thanks for your reply. I have no problem bridging my 9980.
I want my 1043ND to do the PPoE but I can't find the correct netconfig options.

in /etc/config/network :

config interface wan
    option ifname 'eth0.835'
    option proto 'pppoe'
    option username= 'username'
    option password= 'password'

This is the configuration, if your wan port is eth0, and if your internet vlan is 835

I'm sorry I forgot to mention
my port is eth0.2
Untitled

what is the correct ifname option?

replace eth0.2 with eth0.835 in your wan configuration. it means Vlan 835 on port eth0. What i wrote in my previous post seems to be good:

config interface wan
    option ifname 'eth0.835'
    option proto 'pppoe'
    option username= 'username'
    option password= 'password'
1 Like

thanks
I'll give it a try from my linux PC and I'll let you know. Using vi editor from putty in windows won't let me save and quit.

i edit the file with notepad++ and connect with winscp :yum:

in vi you have to type :w to write to disk, or :wq to write and quit.
--> http://unix.t-a-y-l-o-r.com/VBsave.html

You will also have to change the VLAN number in the switch from 2 to 835, and make it tagged on the WAN port (as well as the CPU, where it is already tagged).

That is if you really need tagged packets on the Ethernet cable. In some cases the modem expects untagged packets and will tag them itself on the way to the DSL line.

All of this can be done through the LUCI web interface if you have it running. First create the 835 VLAN in the switch, then eth0.835 will appear as an option in the wan physical settings.