Hi,
i have a simple PCC load balancing configuration on a RB3011 router, i cannot get more than 750 Mb/s of throughput, i see one of the two CPUs 80/90% tops, is there anything i can do to improve (i known i can't activate FastTrask because of mangle rules)?
Here is the configuration:
/interface bridge
add name=bridge-lan protocol-mode=none
/interface ethernet
set [ find default-name=ether1 ] name=ether1-WAN1
set [ find default-name=ether2 ] name=ether2-WAN2
/interface bridge port
add bridge=bridge-lan interface=ether3
add bridge=bridge-lan interface=ether4
add bridge=bridge-lan interface=ether5
add bridge=bridge-lan interface=ether6
add bridge=bridge-lan interface=ether7
add bridge=bridge-lan interface=ether8
add bridge=bridge-lan interface=ether9
add bridge=bridge-lan interface=ether10
/ip address
add address=192.168.5.1/24 interface=bridge-lan network=192.168.5.0
add address=192.168.0.150/24 interface=ether1-WAN1 network=192.168.0.0
add address=192.168.10.150/24 interface=ether2-WAN2 network=192.168.10.0
/ip firewall mangle
add action=accept chain=prerouting dst-address=192.168.0.0/24 in-interface=\
bridge-lan
add action=accept chain=prerouting dst-address=192.168.10.0/24 in-interface=\
bridge-lan
add action=mark-connection chain=prerouting connection-mark=no-mark \
in-interface=ether1-WAN1 new-connection-mark=WAN1_conn passthrough=no
add action=mark-connection chain=prerouting connection-mark=no-mark \
in-interface=ether2-WAN2 new-connection-mark=WAN2_conn passthrough=no
add action=mark-connection chain=prerouting connection-mark=no-mark \
dst-address-type=!local in-interface=bridge-lan new-connection-mark=\
WAN1_conn passthrough=yes per-connection-classifier=both-addresses:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark \
dst-address-type=!local in-interface=bridge-lan new-connection-mark=\
WAN2_conn passthrough=yes per-connection-classifier=both-addresses:2/1
add action=mark-routing chain=prerouting connection-mark=WAN1_conn \
in-interface=bridge-lan new-routing-mark=to_WAN1 passthrough=yes
add action=mark-routing chain=prerouting connection-mark=WAN2_conn \
in-interface=bridge-lan new-routing-mark=to_WAN2 passthrough=yes
add action=mark-routing chain=output connection-mark=WAN1_conn \
new-routing-mark=to_WAN1 passthrough=yes
add action=mark-routing chain=output connection-mark=WAN2_conn \
new-routing-mark=to_WAN2 passthrough=yes
/ip firewall nat
add action=masquerade chain=srcnat log-prefix=WAN1: out-interface=ether1-WAN1
add action=masquerade chain=srcnat log-prefix=WAN2: out-interface=ether2-WAN2
/ip route
add disabled=yes distance=1 gateway=192.168.0.1 routing-mark=to_WAN1
add disabled=yes distance=1 gateway=192.168.10.1 routing-mark=to_WAN2
add disabled=yes distance=1 gateway=192.168.0.1
add disabled=yes distance=2 gateway=192.168.10.1