I’m doing config audit for several way-back set up and configured devices (mostly 951’s), I noticed that most of them has the same config portion, which looks like default config done by that time:
/interface wireless set [ find default-name=wlan1 ] band=2ghz-b/g/n channel-width=20/40mhz-Ce disabled=false...
...
/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway
set [ find default-name=ether2 ] name=ether2-master-local
set [ find default-name=ether3 ] master-port=ether2-master-local name=ether3-slave-local
...
/interface bridge port
add bridge=bridge-local interface=ether2-master-local
add bridge=bridge-local interface=wlan1
...
/ip address add address=10.10.10.1/24 comment="default configuration" interface=ether2-master-local network=10.10.10.0
(I’ve changed the look a bit to fit it into code preview window here).
That is, the LAN ip (which is the default gateway for devices on its LAN) is set up on ether2, which, in turn, put into bridge with wlan, and clients on wlan are working fine.
This is something I don’t like to see (I used to set up IP address on bridge itself), but these routers isn’t looks like to be set up in a sophisticated way so looks like this approach was the default one (= out of box) by that time.
So the question is: the setup is working fine, so if I should change it and set IP on bridge, instead of ether2? Like this:
/ip address
add address=10.10.10.1/24 comment="default configuration" interface=bridge-local network=10.10.10.0
The change is easy, but actually I’d like to know if there is any difference in terms of speed or CPU load or in network problems for me to have reason to touch this. If not, then I can leave it as is, just for the simple idea it worked for years (with different ROS versions, by the way), so the setup looks like stable one.