Hi,
I am experimenting with different configurations for my own learning and enjoyment (i.e., not a production environment) and I noticed something that made me curious about how interface lists work. At the moment, these two devices are just managed by CAPsMAN from another device (my main router), nothing special.
One device is an AC2 on my learning network and I had the interface list configured this way:
[admin@MikroTik hAP AC2 (Upstairs)] /interface/list> export
# jun/26/2023 10:43:32 by RouterOS 7.1.3
# model = RBD52G-5HacD2HnD
/interface list
add name=WAN
add name=LAN
/interface list member
add interface=ether1 list=WAN
add interface=ether2 list=LAN
add interface=ether3 list=LAN
add interface=ether4 list=LAN
add interface=ether5 list=LAN
add interface=wlan2 list=LAN
add interface=wlan1 list=LAN
On a different part of the same network, I have an AC3 with the list this way:
[admin@MikroTik hAP AC3] /interface/list> export
# jun/26/2023 06:24:59 by RouterOS 7.1.3
# model = RBD53iG-5HacD2HnD
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface list member
add comment=defconf interface=bridge-AC3 list=LAN
add comment=defconf interface=ether1 list=WAN
(bridge-AC3 contains ether1-5 and wlan1-2)
Functionally, the results seem to be indistinguishable. I was wondering if it might have some functional differences relating to this post:
http://forum.mikrotik.com/t/interface-list-usage-question/129410/1
But, basically, I am hoping to understand more about the differences between these two seemingly-equal ways of interface listing. Is one a better practice? or more secure? or allows/limits some other functionality? I’ve read the mikrotik documentation but it doesn’t explain very deep beneath the surface.
Thank you for the education!
[edit] Clarification to my question: Which device (the AC2 or the AC3) is set up more ‘correctly?’ They both seem to work equally well, but I am ignorant what the unintended consequences may be of using one method over the other, and wish to learn about best practices. Or is either way OK?