Hi there,
We just got a Mikrotik RB951 and I have some problems setting it up!
I have 2 issues that I can´t seem to do:
Setup:
2 WAN, Wan1: Static IP on Ether1, Wan2 DHCP from Cable on Ether2
I did setup Ether3 as Master and 4 and 5 slaves of 3.
Wan2 get’sa it’s IP directly from the Cable with no problem.
/interface ethernet
set [ find default-name=ether1 ] name=Wan1-Iplan
set [ find default-name=ether2 ] name=Wan2-Fibertel
set [ find default-name=ether3 ] name=ether3-master-local
set [ find default-name=ether4 ] master-port=ether3-master-local name=ether4-slave-local
set [ find default-name=ether5 ] master-port=ether3-master-local name=ether5-slave-local
1) Port Forwarding
I set up a Forwarding rule as follows:
/ip firewall nat
add action=masquerade chain=srcnat comment=“default configuration” out-interface=Wan1-Iplan
add action=dst-nat chain=dstnat in-interface=Wan1-Iplan protocol=tcp src-port=3390 to-addresses=10.0.0.230 to-ports=3390
As I have read all over, this should do the trick but it doesn’t so I added a Firewall filter:
/ip firewall filter
add chain=forward action=accept protocol=“tcp” dst-address=“10.0.0.230” dst-port=“3390” in-interface=“Wan1-Iplan”
Still Don’t work!
2) Dual Wan Failover
Set up as follows:
/ip dhcp-client
add default-route-distance=3 dhcp-options=hostname,clientid disabled=no interface=Wan2-Fibertel
/ip route
add check-gateway=ping distance=1 gateway=xxx.xxx.xxx.xxx
Can somebody please help me achieve this?
BTW, I wouldn’t mind if in the process I get Dual Wan
Thanks!