So, (again, assuming I understand correctly), this grouping is a switch, but while ports 3-5 handle traffic, the configuration takes place on ether2-master.
So, is it possible to create 2 groupings? For example,:
A)
ether2-master; master port: none
ether3; master port: ether2-master
B)
ether4; master port: none
ether5; master port: ether4
Which would create two different switches? When I tried to move ether5’s master port to ether4 in webfig, I get an error about only having 1 master port.
I cannot find any other documentation regarding the role of master-port, so any links, resources, advice, etc. would be appreciated.
create 2 bridges: bridge1 and bridge2 ( from left menu, hit bridge then in BRIDGE tab click on “+” sign )
after creating bridges, on bridge windows go to tab PORTS; click on “+” and in general tab into “Interface” select desired port that you want to alocate to selected “Bridge”
AFAIK the used switch chips allow only one master port/chip.
Bridges are done in software and are not switch groups, meaning they are usually not wire speed (they are globally limited to the speed of the switch chip - CPU interface) and use CPU processing.
But function wise they can replace a switch group (with extended capabilities like STP and filtering).
No, this is not possible. You can take ports of of the switch and use them independently and with an external
switch, but you cannot break up the internal switch.
However, you may be able to do what you want by adding a VLAN configuration to the switch. You can create
an additional VLAN, make port 4 and 5 untagged members of it, and the CPU port a tagged member, then create
a VLAN interface inside the router config and that VLAN will talk to ports 4 and 5. Like this:
/interface vlan
add interface=ether2-master name=ether2-vlan20 vlan-id=20
/interface ethernet switch port
set 2 vlan-mode=secure
set 3 vlan-mode=secure
set 4 default-vlan-id=20 vlan-header=always-strip vlan-mode=secure
set 5 default-vlan-id=20 vlan-header=always-strip vlan-mode=secure
/interface ethernet switch vlan
add independent-learning=no ports=switch1-cpu,ether2-master,ether4,ether5 switch=switch1 \
vlan-id=20