i have use the following Sites
http://wiki.mikrotik.com/wiki/Load_Bala ... e_Gateways
http://wiki.mikrotik.com/wiki/Pppoe_ser ... h_profiles
for Multiple Gateways and the PPPoE-Server functionally fine.
http://wiki.mikrotik.com/wiki/How_to_ma ... _web_proxy
But when i use the transparent Web-Proxy the Traffic can't find a route. Where is my failure?
My Routes:
My Firewall - NAT/ip route
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=192.168.178.1 \
routing-mark=GroupB scope=30 target-scope=10
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=192.168.0.1 \
routing-mark=GroupA scope=30 target-scope=10
My Firewall - Mangle/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" disabled=no \
src-address=192.168.88.0/24
add action=redirect chain=dstnat disabled=no dst-port=80 protocol=tcp \
to-ports=8080
The last 2 Rules I use for the Queues./ip firewall mangle
add action=mark-routing chain=prerouting disabled=no new-routing-mark=GroupB \
passthrough=yes src-address=192.168.88.22
add action=mark-connection chain=prerouting disabled=no new-connection-mark=\
connection_tcp passthrough=yes protocol=tcp
add action=mark-packet chain=prerouting connection-mark=connection_tcp \
disabled=no new-packet-mark=conn_tcp passthrough=no
I hope you can help me.