Recording Port access

I am needing to record to the ‘address list’ the ip of the person behind our nat network that is using a specific port. How can I do this.

You just create a filter rule that will match what ever criteria you are looking for and then the action will be “add src to address list”. For example:

/ip firewall filter
add action=add-src-to-address-list address-list="Web Users" chain=forward dst-port=80 protocol=tcp

Thanks

No problem, glad I could help :smiley: