Hi!
So, I have a rule:
add action=mark-connection chain=prerouting connection-state=new dst-address=1.1.1.1 \
dst-port=80,443 new-connection-mark=web passthrough=yes per-connection-classifier=src-address:2/0 protocol=tcp
Packets counter increases, when I connect from Internet and not increases, when I connects from local network.
When I change rule to this one:
add action=mark-connection chain=prerouting connection-state=new dst-address=1.1.1.1 \
dst-port=80,443 new-connection-mark=web passthrough=yes protocol=tcp
It begins work for local addresses(packets counter increases), but I need PCC.
What am I doing wrong and how to fix it?
Thank you in advance for help!