Hi,
I have Mikrotik RouterBoard 1200 and i want to use it to block the spam and generate monthly report the http tracffic.
Can this Mikrotik RouterBoard 1200 do those function above?
Thank
Sopheap
Hi,
I have Mikrotik RouterBoard 1200 and i want to use it to block the spam and generate monthly report the http tracffic.
Can this Mikrotik RouterBoard 1200 do those function above?
Thank
Sopheap
You can block spammer based on IP/port filter rules or you can “play” with
/ip firewall layer7-protocol http://wiki.mikrotik.com/wiki/Manual:IP/Firewall/L7
and, maybe, some scripts.
/ ip firewall filter
add chain=forward prot=tcp dst-port=25 src-address-list=spammer act=drop comment="Block port-25 for SPAMMERS from spammer-list"
add chain=forward prot=tcp dst-port=25 connection-limit=30,32 limit=50,5 src-address-list=!spammer action=add-src-to-address-list address-list=spammer address-list-timeout=30d comment="Add SPAMMERS to spammer-list for 30 days"