Hi everyone,
I have tried checking online and have come up empty handed so would appreciate any help!
My setup:
Ether 1 - WAN 1 (PPPoE)
Ether 2 - WAN 2
Ether 3 - LAN
I have multiple MikroTik’s that are meant to connect to my MikroTik so I can access things on those networks as well as them on mine. I understand the routing aspect of the client side and have had it working before. I just had my WAN 1 connection bridged so my MikroTik would do the PPPoE authentication instead of the fiber modem but now none of my PPTP connections will reconnect and I don’t know what else to try.
Here’s my export config of my IP>Firewall that I’ve used because I’m pretty sure it has something to do with routing marks or something like that. It’s very basic as I just started from scratch to try resolve the issue with no luck:
/ip firewall address-list
add address=192.168.1.101 comment=PC1 list=WAN1
add address=192.168.1.102 comment=PC2 list=WAN2
/ip firewall filter
add action=drop chain=input dst-port=53 in-interface="Ether 1 - WAN 1" protocol=udp
add action=drop chain=input dst-port=53 in-interface="Ether 1 - WAN 1" protocol=tcp
add action=drop chain=input dst-port=53 in-interface="Ether 2 - WAN 2" protocol=udp
add action=drop chain=input dst-port=53 in-interface="Ether 2 - WAN 2" protocol=tcp
/ip firewall mangle
add action=mark-routing chain=prerouting new-routing-mark=GroupA passthrough=no src-address-list=WAN1
add action=mark-routing chain=prerouting new-routing-mark=GroupB passthrough=no src-address-list=WAN2
/ip firewall nat
add action=masquerade chain=srcnat src-address=192.168.1.0/24
I’ll appreciate any help whatsoever!!!