Community discussions

MikroTik App
 
dougy
just joined
Topic Author
Posts: 3
Joined: Tue Feb 23, 2016 5:32 am

vlan tagging RB3011

Thu Nov 10, 2016 3:24 am

I've been using a telco (CenturyLInk, midwest USA) modem setup in transparent bridging to my RB3011 for dsl service. Yesterday my service was upgraded to fiber, and the new modem (router?) provided refuses to recognize my credentials when placed in transparent bridging. After spending several hours with tech support their recommendation was to attach the routerboard directly to the ont using my PPPoE credentials. The problem is that all traffic through the ont must be tagged as VLAN201. I've read several threads on the forums, and several other tutorials about setting up tagging and can't understand enough to relate to my current use. What I want is eth1 connected to the ont, and all the other ports available as part of a 192.168.1.x network with the routerboard as 192.168.1.1. Any help would be appreciated, I can use the cli if necessary but would prefer Winbox.
 
msatter
Forum Guru
Forum Guru
Posts: 2942
Joined: Tue Feb 18, 2014 12:56 am
Location: Netherlands / Nīderlande

Re: vlan tagging RB3011

Thu Nov 10, 2016 10:20 am

First stay on MTU 1480 to be safe and then 1484. I have the new RB750Gr3 and default on all ports there was a vlan 1. I had to set them all to ignore or something else that it would not be used. Than I added a vlan, in your case 20, in interfaces and TAB vlan.
 
User avatar
cdiedrich
Forum Veteran
Forum Veteran
Posts: 997
Joined: Thu Feb 13, 2014 2:03 pm
Location: Basel, Switzerland // Bremen, Germany
Contact:

Re: vlan tagging RB3011

Thu Nov 10, 2016 10:49 am

First, remove any IP addresses or DHCP-clients from ether1.
Then add a vlan interface to ether1:
/interface vlan
add interface=ether1 name=e1-v201 vlan-id=201
Now add or move your PPPoE-Client to this vlan:
/interface pppoe-client
add add-default-route=yes disabled=no interface=e1-v201 name=pppoe-out1 password=password user=username
Adjust your firewall rules in Filter and NAT which reference ether1 to pppoe-out1.
Done.
-Chris