Hello,
I have a MikroTik RB5009 running RouterOS 7, and I am trying to combine two PPPoE connections using PCC load balancing to achieve combined download and upload speeds.
I previously used the exact same scenario on an RB951Ui with RouterOS 6.xx, and it worked perfectly.
Now with RouterOS 7, the configuration does not work even though I kept the same logic.
Below is my current configuration.
/interface pppoe-client print detail
0 R name="pppoe-out1" interface=ether1 user="xx" password="xx"
add-default-route=no use-peer-dns=yes allow=pap,chap,mschap1,mschap2
1 R name="pppoe-out2" interface=ether2 user="xx" password="xx"
add-default-route=no use-peer-dns=yes allow=pap,chap,mschap1,mschap2
/ip firewall mangle print detail
0 D chain=prerouting action=passthrough
1 D chain=forward action=passthrough
2 D chain=postrouting action=passthrough
4 chain=prerouting action=mark-connection new-connection-mark=WAN1_conn
dst-address-type=!local connection-mark=no-mark in-interface=bridge
per-connection-classifier=both-addresses:2/0
5 chain=prerouting action=mark-connection new-connection-mark=WAN2_conn
dst-address-type=!local connection-mark=no-mark in-interface=bridge
per-connection-classifier=both-addresses:2/1
6 chain=prerouting action=mark-routing new-routing-mark=TO_WAN1
connection-mark=WAN1_conn in-interface=bridge
7 chain=prerouting action=mark-routing new-routing-mark=TO_WAN2
connection-mark=WAN2_conn in-interface=bridge
/ip route print detail
1 As dst-address=0.0.0.0/0 routing-table=main gateway=pppoe-out1 distance=1
2 s dst-address=0.0.0.0/0 routing-table=main gateway=pppoe-out1 distance=2
/ip firewall nat print detail
0 chain=srcnat action=masquerade src-address=192.168.88.0/24 out-interface=pppoe-out1
1 chain=srcnat action=masquerade src-address=192.168.88.0/24 out-interface=pppoe-out2
With RouterOS 7, this configuration no longer provides combined download/upload speeds.
It appears that PCC routing is not working as it did in RouterOS 6, but I’m not sure whether:
-
My configuration is wrong, or
-
RouterOS 7 no longer supports this method
Would appreciate guidance from anyone who successfully implemented PCC with dual PPPoE on RouterOS 7, or confirmation if this feature behaves differently now..
Thank You