Hi!
We have MikroTik RouterBoard RB1100AHX2 with RouterOS 5.26 installed.
We have some test rules:
9 ;;; WEB to Prod 81
chain=dstnat action=dst-nat to-addresses=10.10.10.2 to-ports=81 protocol=tcp dst-address=88.88.88.88 src-address-list=!TestList dst-port=80
10 ;;; WEB to Prod 80
chain=dstnat action=dst-nat to-addresses=10.10.10.2 to-ports=80 protocol=tcp dst-address=88.88.88.88 dst-port=80
Now, if src-address not matching list TestList rule 9 works fine and traffic goes on to 10.10.10.2 on port 81, but if src-address matching list TestList the rule number 10 does not work thus the traffic matching list testList does not go to 10.10.10.2 on port 80
Is there a posibility to perform some of:
IF src-address not in List THEN traffic should go to port 80 ELSE traffic should go to port 81
EDIT: Sorry! The problem is appears when i go to 88.88.88.88 from 10.10.10.2. Now i have just added 10.10.10.0/24 to TestList and everuthing is OK. Thank you!