Balanceo de Diferente Velocidades

You might also like

You are on page 1of 1

/ip firewall mangle

add action=mark-connection chain=input in-interface=ether1 new-connection-


mark=ether1_conn \
passthrough=yes
add action=mark-connection chain=input in-interface=ether5 new-connection-
mark=ether5_conn \
passthrough=yes
add action=mark-routing chain=output connection-mark=ether1_conn new-routing-mark=\
to_ether1 passthrough=yes
add action=mark-routing chain=output connection-mark=ether5_conn new-routing-mark=\
to_ether5 passthrough=yes
add action=mark-connection chain=prerouting in-interface=bridge1 new-connection-
mark=\
ether1_conn passthrough=yes per-connection-classifier=both-addresses-and-
ports:3/0
add action=mark-connection chain=prerouting in-interface=bridge1 new-connection-
mark=\
ether1_conn passthrough=yes per-connection-classifier=both-addresses-and-
ports:3/1
add action=mark-connection chain=prerouting in-interface=bridge1 new-connection-
mark=\
ether5_conn passthrough=yes per-connection-classifier=both-addresses-and-
ports:3/2
add action=mark-routing chain=prerouting connection-mark=ether1_conn in-
interface=bridge1 \
new-routing-mark=to_ether1 passthrough=yes
add action=mark-routing chain=prerouting connection-mark=ether5_conn in-
interface=bridge1 \
new-routing-mark=to_ether5 passthrough=yes

/ip firewall nat


add action=masquerade chain=srcnat out-interface=ether1
add action=masquerade chain=srcnat out-interface=ether5

/ip route
add check-gateway=ping distance=1 gateway=192.168.88.1 routing-mark=to_ether1
add check-gateway=ping distance=1 gateway=192.168.83.1 routing-mark=to_ether5

You might also like