Hello,
We don't use PPPoE as WAN. We have a static ip for the router and a gateway that our ISP provide us and
I have only firewall rules to block access between the 2 networks. Don't have anything else in firewall.
here is the config from the mikrotik i got the problem. I changed a little the sensitive information but its simple config.
"....
/interface bridge
add admin-mac=XX:XX:XX:XX:XX:XX auto-mac=no fast-forward=no name=bridge.guests.lan
add admin-mac=XX:XX:XX:XX:XX:XX auto-mac=no fast-forward=no name=bridge.offices.lan
/interface ethernet
set [ find default-name=ether6 ] name=ether6-guests.lan
set [ find default-name=ether7 ] name=ether7-guests.lan
set [ find default-name=ether10 ] name=ether10-offices.lan
set [ find default-name=ether11 ] name=ether11-wan1
/ip pool
add name=dhcp.guests.lan ranges=10.0.0.2-10.0.0.254
(Offices are all static ip)
/ip dhcp-server
add add-arp=yes address-pool=dhcp.guests.lan disabled=no interface=bridge.guests.lan lease-time=12h name=dhcp.guests.lan
/system logging action
set 0 memory-lines=2000
/interface bridge port
add bridge=bridge.guests.lan interface=ether6-guests.lan
add bridge=bridge.guests.lan interface=ether7-guests.lan
add bridge=bridge.offices.lan interface=ether10-offices.lan
add bridge=bridge.guests.lan interface=ether9.guests.lan
/ip settings
set rp-filter=strict tcp-syncookies=yes
/ip address
add address="public ip" comment="ISP - wan1" interface=ether11-wan1 network="public ip network"
add address=10.10.10.1/24 comment=offices.lan interface=bridge.offices.lan network=10.10.10.0
add address=10.0.0.1/24 comment=guests.lan interface=bridge.guests.lan network=10.0.0.0
/ip dhcp-server network
add address=10.0.0.0/24 gateway=10.0.0.1
/ip dns
set servers=8.8.8.8,8.8.4.4
/ip firewall filter
add action=drop chain=forward in-interface=bridge.guests.lan out-interface=bridge.offices.lan
add action=drop chain=forward in-interface=bridge.offices.lan out-interface=bridge.guests.lan
/ip firewall mangle
add action=change-mss chain=forward new-mss=1418 out-interface=ether11-wan1 passthrough=yes protocol=tcp tcp-flags=syn tcp-mss=1419-65535
add action=change-mss chain=forward in-interface=ether11-wan1 new-mss=1418 passthrough=yes protocol=tcp tcp-flags=syn tcp-mss=1419-65535
/ip firewall nat
add action=masquerade chain=srcnat comment=bridge.guests.lan out-interface=ether11-wan1 src-address=10.0.0.0/24
add action=masquerade chain=srcnat comment=offices.lan out-interface=ether11-wan1 src-address=10.10.10.0/24
/ip route
add comment="Gateway All Networks" distance=1 gateway=(my ips provided gateway)
/tool bandwidth-server
set authenticate=no enabled=no
..."
I checked with my working mikrotik and all are the same. not many to check
Thanks