Hello ,
I want to understand soemthing -
I need to NAT port 9998.
this is what I did -
so I did this :
/ip firewall filter
add action=add-src-to-address-list address-list="FilterForward(UDP)" \
address-list-timeout=0s chain=forward disabled=yes dst-port=9998 \
in-interface=ppp-out1 log-prefix="" protocol=udp
add action=accept chain=forward dst-port=9998 in-interface=ppp-out1 \
log-prefix="" protocol=udp
/ip firewall nat
add action=masquerade chain=srcnat log-prefix=""
add action=dst-nat chain=dstnat dst-port=9998 in-interface=ppp-out1 \
log-prefix="" protocol=udp to-addresses=10.0.0.120 to-ports=9998
this is working
but if I look at the counter:
The filter counter is increase every 1 sec (which is accordinf to the data beeing send) .
The NAT counter is not increase at all
how could it be ? and the rule is working because the computer 10.0.0.120 is getting the data …
Thanks ,