Hi
I am new with routeros and i want to ask if it is possible to make a hotspot and be able to monitor what pages are users opening?
Thanks
That's more of what Netflows (Traffic Flow in the MikroTik) is made for. It collects and analyzes what IP addresses were visited, the protocol, when it started, when it ended and how much data was transferred.If it is enough to monitor the IP addresses visited, you can set info logging to a remote syslog server. Then set up a mange rule
ip firewal mangle add chain=prerouting action=log connection-state=new protocol=tcp dst-port=80,443 log-prefix="WEBACCESS"
This way you can also monitor SMTP,IRC,P2P access etc ...
GL