In the http://wiki.mikrotik.com/wiki/PCC it shows the following 2 sections:
add chain=prerouting dst-address=10.111.0.0/24 action=accept in-interface=Local
add chain=prerouting dst-address=10.112.0.0/24 action=accept in-interface=Local
and
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/0 \
action=mark-connection new-connection-mark=wlan1_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=wlan2_conn passthrough=yes
Why can I not also use dst-address-type on the first section to generalize it, like below, as I use a combination of static IP and pppoe DSL clients as my WANs?
add chain=prerouting dst-address-type=local action=accept in-interface=Local
Ekkas