I want to bridge two VLANs on the same interface. Is this the way to go? is there something I am missing?
/ interface vlan
add name="vlan1" mtu=1500 arp=enabled vlan-id=101 interface=ether1 comment="" disabled=no
add name="vlan2" mtu=1500 arp=enabled vlan-id=102 interface=ether1 comment="" disabled=no
/ interface ethernet
set ether1 name="ether1" mtu=1500 mac-address=xx:xx:xx:xx:xx:xx arp=enabled disable-running-check=yes \
auto-negotiation=yes full-duplex=yes cable-settings=default speed=100Mbps comment="" disabled=no
/ interface bridge
add name="sm" mtu=1500 arp=enabled stp=no priority=32768 ageing-time=5m forward-delay=15s \
garbage-collection-interval=4s hello-time=2s max-message-age=20s comment="" disabled=no
/ interface bridge port
add interface=vlan1 bridge=sm priority=128 path-cost=10 comment="" disabled=no
add interface=vlan2 bridge=sm priority=128 path-cost=10 comment="" disabled=no
What I am trying to do is have each customer (up to 100) on their own VLAN so that I can monitor the interfaces individualy for each customer. I would like to have all the customers on one ip subnet so that I can assign dynamic IP addresses.
Because this is a wireless network I am worried that traffice comming in on a given VLAN will then be transmitted out to the other members of the bridge (all customers are on one AP) and create a horible mess.
Am I correct?