Subject line says it all. I just started my web proxy on Mikrotik 2.9.51. I am still very much a newbie with Mikrotik.
Anyway, I have only 5 machines with web-proxy configured on. However, it is reporting 7 clients. I need to know how to restrict access to just my IPs, both public and private.
By the way - is there any obvious reason for me to upgrade to a newer version?
One more question - is there a way to tell the IPs or MAC addresses of machines using the web-proxy?
Use the Firewall to block access to the router (not just proxy) from all unknown addresses.
Add rules in the Input chain, with action “accept” for all known IPs, including your own, and then add an universal rule with no IP specified, with action “deny”. This will first accept good proxy users, and deny everyone else (including internet users who could get access to your proxy!)
Everything that goes into the Input chain, only controls access to the router’s internal system (like proxy) this will not affect internet usage without proxy (that is controlled by chain Forward)
My question is: I use winbox whenever possible. Where in this list do I insert such rules, or does Mikrotik know where to insert it when I create it? Can you give me a brief example?
One more thing - Does the actual processing start at line 36 and go down or does it start at 43 and go up?
Each packet is inspected against your rule criteria. It starts at rule #0 and goes down. If it meets a criteria for example at rule #14, the specified ACTION is taken, and the processing stops - next packet is now inspected, and starts from #0 …