Community discussions

MikroTik App
 
vico
just joined
Topic Author
Posts: 3
Joined: Fri Jan 13, 2012 6:23 pm

VLANs and VirtualAP on routerboard 411AH

Fri Jan 13, 2012 7:06 pm

Hi !

I need setup routerboard 411AH with following features: some wireless clients connected to my B411AH via wireless interface are bridged to Ethernet, some other wireless clients with different SSID connected to VirtualAP which created on this wireless interface and need to bridge to the ethernet interface but in separate VLAN which created on ethernet interface.
Will this configuration work ?

The config is:

int wire set 0 name=wlan1
int ether set 0 name=ether1
interface bridge add name=bridge1
interface bridge port add interface=ether1 bridge=bridge1
interface enable wlan1
interface bridge port add interface=wlan1 bridge=bridge1
int wireless set wlan1 ssid="SSID_1"
ip address add address="10.10.53.2/24" interface=bridge1
interface wireless add name=wlan3 disabled=no master-interface=wlan1
int wireless set wlan3 ssid="SSID_3"
interface vlan add name="vlan300" vlan-id=300 disabled=no interface=ether1
interface bridge add name=bridge3
interface bridge port add interface=wlan3 bridge=bridge3
interface bridge port add interface=vlan300 bridge=bridge3
ip address add address="10.10.55.2/24" interface=bridge3

Now I can ping from my router ip (10.10.53.1) to RB411AH ip (10.10.53.2),
but I can't ping from my router ip (10.10.55.1) in VLAN300 (tagged) to RB411AH ip (10.10.55.2).
When I have deleted the bridge1 interface on my RB411AH the pings from 10.10.55.1 to 10.10.55.2
in VLAN300 were passed successfully.
Are the any errors in my config ? Is it possible to config RB411AH v5.11 to have at the same time
on ethernet port two bridges: one in tagged VLAN and another in untagged (native vlan) which
works together ?

--
Thanks in advance,
Victor.
Last edited by vico on Sat Jan 14, 2012 1:26 pm, edited 1 time in total.
 
mgutz2
Frequent Visitor
Frequent Visitor
Posts: 97
Joined: Wed Jul 07, 2010 8:55 pm
Location: Nicaragua

Re: VLANs and VirtualAP on routerboard 411AH

Sat Jan 14, 2012 1:35 am

I have implemented a network I so, I will make the diagram and put it here to tell me if this is how you want it
 
vico
just joined
Topic Author
Posts: 3
Joined: Fri Jan 13, 2012 6:23 pm

Re: VLANs and VirtualAP on routerboard 411AH

Sat Jan 14, 2012 1:08 pm

Thank you, looking forward
 
mgutz2
Frequent Visitor
Frequent Visitor
Posts: 97
Joined: Wed Jul 07, 2010 8:55 pm
Location: Nicaragua

Re: VLANs and VirtualAP on routerboard 411AH

Sat Jan 14, 2012 7:34 pm

Note that you must not use the eth port on the bridge, this is because the vlan are linked to eth port and should not add on any bridge, the port of your switch must be in trunk mode and you can only monitor done by assigning a vlan for that.
for all other customers must do the same process with the exception of monitoring valn it is only once.
Good luck, hope you serve.
You do not have the required permissions to view the files attached to this post.
 
mgutz2
Frequent Visitor
Frequent Visitor
Posts: 97
Joined: Wed Jul 07, 2010 8:55 pm
Location: Nicaragua

Re: VLANs and VirtualAP on routerboard 411AH

Sat Jan 14, 2012 7:42 pm

cont..
You do not have the required permissions to view the files attached to this post.
 
mgutz2
Frequent Visitor
Frequent Visitor
Posts: 97
Joined: Wed Jul 07, 2010 8:55 pm
Location: Nicaragua

Re: VLANs and VirtualAP on routerboard 411AH

Sat Jan 14, 2012 7:45 pm

cont.
You do not have the required permissions to view the files attached to this post.
 
vico
just joined
Topic Author
Posts: 3
Joined: Fri Jan 13, 2012 6:23 pm

Re: VLANs and VirtualAP on routerboard 411AH

Sat Jan 14, 2012 8:40 pm

Мany thanks for your diagrams.
But I need not only monitor my RB411AH in different VLAN.
I need:
1. Some wireless clients connected to main wireless interface with ssid="SSID_1" and
bridged to ethernet interface, but this clients may send packets tagged in many
differnet (configured on clients) VLANs. That is why I need bridged wireless and
ethernet interfaces on my RB411AH.
2. Other group of wireless clients connected to VirtualAP with different ssid="SSID_2"
and bridged to ethernet intrface in separate VLAN.

As I know the VLAN 1 on ethernet is tagging packets by tag 1 not untagged.

I don't sure, is it possible in general to realize this requirements on Mikrotik RB411AH
or maybe I want the impossible from this hardware :(