According to http://wiki.mikrotik.com/wiki/Manual:Switch_Chip_Features#Port_Switching
I am trying some functions. First one is this:
Ether1 port on RB450G has a feature that allows it to be removed/added to the default switch group. By default ether1 port will be included in the switch group. This configuration can be changed with /interface ethernet switch set switch1 switch-all-ports=no
“yes” means ether1 is part of switch and supports switch grouping, and all other advanced Atheros8316 features including extended statistics (/interface ethernet print stats).
“no” means ether1 is not part of switch, effectivly making it as stand alone ethernet port, this way increasing its troughtput to other ports in bridged, and routed mode, but removing the switching possibility on this port.
but when trying this result looks like:
[admin@rb750g] > int ether switch print
Flags: I - invalid
# NAME TYPE MIRROR-SOURCE MIRROR-TARGET SWITCH-ALL-PORTS
0 switch1 Atheros-8316 none none
[admin@rb750g] > interface ethernet switch set switch1 switch-all-ports=no
[admin@rb750g] > int ether switch print
Flags: I - invalid
# NAME TYPE MIRROR-SOURCE MIRROR-TARGET SWITCH-ALL-PORTS
0 switch1 Atheros-8316 none none
does not seem to work at all… Has anyone been able to use this feature?
Second try considers VLANs, according to http://wiki.mikrotik.com/wiki/Manual:Switch_Chip_Features#Vlan_Table
As far as I understand it is possible to give VLAN-tag handling to the sowitch chip by creating a VLAN table. Sounds good, but how do i connect access ports (i.e. untagged ones) to that particular VLAN?
TIA