The first two rules capture users in my uncap address list and route them to the RB450. All the rest of the users is routed to the default route which is a bonded Cisco router with 4 ADSL's. The next rules is a classic PCC setup, as described in the WIKI, doing the 4 ADSL load balancing. If you import them like this, they are disabled at this time because the exact code is on the RB450 which is doing the balancing at this time. In order for every thing to work on RB1100, i would disable first to roules and enable rest of the roules. Of cause the PPPoE connection is also made from the RB1100 to the ADSL's at that time and also you have to set up routes in ip-routes for the routing marks in the mangle rules
add action=mark-connection chain=prerouting comment="Merk Uncap Data" \
disabled=no in-interface=ether1 new-connection-mark=Uncap-Data \
passthrough=yes src-address-list=Uncap
add action=mark-routing chain=prerouting comment="Uncap Traffic na 5 Port" \
connection-mark=Uncap-Data disabled=no in-interface=ether1 \
new-routing-mark=to_5_Port passthrough=no src-address-list=Uncap
add action=mark-connection chain=prerouting comment="Uncap traffic PPC 1" \
disabled=yes in-interface=ether1 new-connection-mark=Uncap1_conn \
passthrough=yes per-connection-classifier=src-address:4/0 \
src-address-list=Uncap
add action=mark-connection chain=prerouting comment="Uncap traffic PPC 2" \
disabled=yes in-interface=ether1 new-connection-mark=Uncap2_conn \
passthrough=yes per-connection-classifier=src-address:4/1 \
src-address-list=Uncap
add action=mark-connection chain=prerouting comment="Uncap traffic PPC 3" \
disabled=yes in-interface=ether1 new-connection-mark=Uncap3_conn \
passthrough=yes per-connection-classifier=src-address:4/2 \
src-address-list=Uncap
add action=mark-connection chain=prerouting comment="Uncap traffic PPC 4" \
disabled=yes in-interface=ether1 new-connection-mark=Uncap4_conn \
passthrough=yes per-connection-classifier=src-address:4/3 \
src-address-list=Uncap
add action=mark-routing chain=prerouting comment="Uncap 1 routing mark." \
connection-mark=Uncap1_conn disabled=yes in-interface=ether1 \
new-routing-mark=to_uncap1 passthrough=no
add action=mark-routing chain=prerouting comment="Uncap 2 routing mark." \
connection-mark=Uncap2_conn disabled=yes in-interface=ether1 \
new-routing-mark=to_uncap2 passthrough=no
add action=mark-routing chain=prerouting comment="Uncap 3 routing mark." \
connection-mark=Uncap3_conn disabled=yes in-interface=ether1 \
new-routing-mark=to_uncap3 passthrough=no
add action=mark-routing chain=prerouting comment="Uncap 4 routing mark." \
connection-mark=Uncap4_conn disabled=yes in-interface=ether1 \
new-routing-mark=to_uncap4 passthrough=no