Overseas traffic example

Hello ,

Iam trying to differentiate between Overseas and domestic traffic. I have read the How-to documentation. But what still puzzle me is this :

from http://www.mikrotik.com/docs/ros/2.8/howto/howto.content

/ip firewall mangle
add in-interface=ether1 dst-address=159.148.0.0/16 action=passthrough
.. mark-connection=mark-con-latvia comment=“mark all latvian traffic”
add dst-address=193.41.195.0/24 action=passthrough
.. mark-connection=mark-con-latvia comment=“mark all latvian traffic”
add dst-address=193.41.33.0/24 action=passthrough
.. mark-connection=mark-con-latvia comment=“mark all latvian traffic”
add dst-address=193.41.45.0/24 action=passthrough
.. mark-connection=mark-con-latvia comment=“mark all latvian traffic”
add dst-address=193.68.64.0/19 action=passthrough
.. mark-connection=mark-con-latvia comment=“mark all latvian traffic”

add connection=mark-con-latvia action=passthrough mark-flow=latvia comment=“mark latvia”
add flow=!latvia action=passthrough mark-flow=overseas comment=“mark all oversea traffic”


I understand that the above rule will mark packets to Latvian bound traffic. But What about traffic originating from Latvian server (for example, when ftp-ing from Latvian server) ? Will it be marked by the above mangle rule ??


thanks.