PCC ?

is this configuration for pcc is right , will it work ? (source wiki )

/ ip address
add address=192.168.0.1/24 network=192.168.0.0 broadcast=192.168.0.255 interface=lan 
add address=192.168.100.101/24 network=192.168.100.0 broadcast=192.168.100.255 interface=wan1
add address=192.168.1.2/24 network=192.168.1.0 broadcast=192.168.1.255 interface=wan2

/ ip firewall mangle
add chain=input in-interface=wan1 action=mark-connection new-connection-mark=wan1_conn
add chain=input in-interface=wan2 action=mark-connection new-connection-mark=wan2_conn
add chain=output connection-mark=wan1_conn action=mark-routing new-routing-mark=to_wan1     
add chain=output connection-mark=wan2_conn action=mark-routing new-routing-mark=to_wan2
add chain=prerouting dst-address=192.168.100.0/24  action=accept in-interface=lan 
add chain=prerouting dst-address=192.168.1.0/24  action=accept in-interface=lan
add chain=prerouting dst-address-type=!lan in-interface=lan per-connection-classifier=both-addresses:2/0 \
    action=mark-connection new-connection-mark=wan1_conn passthrough=yes
add chain=prerouting dst-address-type=!lan in-interface=lan per-connection-classifier=both-addresses:2/1 \
    action=mark-connection new-connection-mark=wan2_conn passthrough=yes
add chain=prerouting connection-mark=wan1_conn in-interface=lan action=mark-routing new-routing-mark=to_wan1
add chain=prerouting connection-mark=wan2_conn in-interface=lan action=mark-routing new-routing-mark=to_wan2

/ ip route
add dst-address=0.0.0.0/0 gateway=192.168.100.100 routing-mark=to_wan1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-mark=to_wan2 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.100.100 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.1.1 distance=2 check-gateway=ping

/ ip firewall nat 
add chain=srcnat out-interface=wan1 action=masquerade
add chain=srcnat out-interface=wan2 action=masquerade

help plzzz !!! :frowning:

The wiki shows a working configuration for the network layout shown on that wiki page when no proxy or Hotspot is used.

You give absolutely no additional information so it is impossible to tell if what you posted would work for you.

It’s not that no one wants to help, you have just not asked a question that anyone can help you with given that you gave no details whatsoever.

ok i want to to load balance using pcc like the configuration above in one machine and , i have hotspot or pppoe server on other machine , now my question is ,will this load balancing work ?

Probably.

Why not try it out?
You example is practically the same as the Wiki example. Depending on the needs it works.
So yours will work depending your needs.

Please Re-Check how about my configurations.tq
load2dsl.txt (18.7 KB)