pcc is that normal????

as we can notice a big different between tow line that normal
untitled2.JPG
untitled.JPG

there is my graph
weekly2.JPG
daily2.JPG
weekly.JPG

Depends on your configuration. PCC matches based on hashing IP header fields. If the fields compared are the same, they will always match the same PCC matcher. Say you’re only matching by src-address, and have two clients. One of them opens 10,000 connections and, the other opens 500 connections - you’re going to see 10,000 matched by one rule, and 500 by the other.

i had post in the comment the number of graph
daily.JPG

what the configuration u think i should use it to get the best result
and if that true what u had said it why i do always notice that my first line care the most traffic

thank fewi

what the configuration u think i should use it to get the best result

Depends on what you’re trying to do. I don’t know your network. Please describe why you’re using PCC and what you want it to do for you.

and if that true what u had said it why i do always notice that my first line care the most traffic

Depends on what kind of traffic goes across your router, and how it’s configured. I don’t know either. If you post your configuration and accurately describe the traffic you see maybe I can guess.

xxxxxxxx

i have no restriction on my router all traffic will goes on link explorer and msn
and that my MT configuration

/ ip firewall mangle
add chain=input in-interface=pppoe-out1 action=mark-connection new-connection-mark=wan1_conn
add chain=input in-interface=pppoe-out2 action=mark-connection new-connection-mark=wan2_conn


add chain=output connection-mark=no-mark per-connection-classifier=both-addresses:2/0
action=mark-connection new-connection-mark=wan1_conn passthrough=yes
add chain=output connection-mark=no-mark per-connection-classifier=both-addresses:2/1
action=mark-connection new-connection-mark=wan2_conn passthrough=yes



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-type=!local in-interface=Local per-connection-classifier=both-addresses:2/0
action=mark-connection new-connection-mark=wan1_conn passthrough=yes
add chain=prerouting dst-address-type=!local in-interface=Local 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=Local action=mark-routing new-routing-mark=to_wan1
add chain=prerouting connection-mark=wan2_conn in-interface=Local action=mark-routing new-routing-mark=to_wan2


/ ip route
add dst-address=0.0.0.0/0 gateway=pppoe-out1 routing-mark=to_wan1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=pppoe-out2 routing-mark=to_wan2 check-gateway=ping



add dst-address=0.0.0.0/0 gateway=pppoe-out1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=pppoe-out2 distance=2 check-gateway=ping


/ ip firewall nat
add chain=srcnat out-interface=pppoe-out1 action=masquerade
add chain=srcnat out-interface=pppoe-out2 action=masquerade

??? is that normal

If the same client machine repeatedly talked to the same Internet server, then yes, that’s normal.

thx