All physical interfaces (except WAN) are contained within one bridge, why?
http://forum.mikrotik.com/t/using-routeros-to-vlan-your-network/126489/1
ex1:I have this working setup
WAN
…|5.x.x.x
—±–
WAN_Router
—±–
|192.168.10.1/24
+
|
p1|192.168.10.5/24
—±–
MT Router
—±–
||||
p2..p5 4xTrunk
All my VALNs are located one one Bridge just as in the forum:
http://forum.mikrotik.com/t/using-routeros-to-vlan-your-network/126489/1
But, MT p1 serve as VLAN_10 and WAN at the same time! MT p1 is a untagged port to VLAN_10
-DefaultRoute & DNS: 192.168.10.1
In my firewall i use this (!ProtectedAddr is the 192.168.10.0/24 net) to prevent other VLAN to access VLAN_10 when they want WAN access.
/ip firewall filter add action=accept chain=forward comment=“no custom dns & no protectedIP”
dst-address-list=!ProtectedAddr dst-port=!53 in-interface-list=GuestLAN out-interface-list=BASE_WAN protocol=tcp
ex2:I consider to change the above to this
Then it will follow the, All physical interfaces (except WAN) are contained within one bridge.
http://forum.mikrotik.com/t/using-routeros-to-vlan-your-network/126489/1
But will it work?
WAN
|5.x.x.x
—±–
WAN_Router
—±–
|192.168.1.1/30 (only 2 real ip)
+
|
p1|192.168.1.2/30 (only 2 real ip)
—±–
MT Router
—±–
||||
p2..p5 4xTrunk
-DefaultRoute & DNS: 192.168.1.1
Then VLAN_10 is now like all the other VALNs and i put a new ip/segment at MT p1 and the other router.
I have also removed MT p1 from the bridge, and assigned port p1 the ip 192.168.1.2/30 (only 2 real ip).
To protect the WAN_Router & MT p1 in segment 192.168.1.1 & 192.168.1.2 i think i still need the same firewall item?
Now to my question, what is the difference in the two setup? And what is the preferred one?
(Dont suggest i remove the WAN_Router, i wont)