Now i want to block my local intranet to some users.
those intranet use port: 81-84
IP address: 192.168.100.150 - 192.168.100.154
I have try to filter port and address but those group still can access.
ip firewall filter> add chain=forward src-address=10.10.10.30 protocol=tcp dst-port=81-84 action= drop
This rule is correct or not?
Please help to solve it!
Ok, now i have another example and i hope you can explain me clearly:
Ex: I have username=rakou (this users is stay under Mikrotik) IP: 10.10.10.30
Now i want to block this IP by do not allow access(Remote, Ping, IP Scan,… ) to Range: 192.168.20.50-192.168.20.80 and this range add to address list name=Intranet-Rang
As i add firwall filter now:
ip firewall filter> add chain=forward src-address-list=Intranet-Range dst-address=10.10.10.30 action= drop
Quote:
ip firewall filter> add chain=forward src-address-list=Intranet-Range dst-address=10.10.10.30 action= drop
So this rule is correct or not?
What that rule means is that every traffic starting at the address list Intranet-Range (192.168.20.50-192.168.20.80) intended to go to the ip 10.10.10.30 will drop…if that is you want to do…yes…the ip 10.10.10.30 won’t have requirments from those ip’s, and well everything also depends on your other filter rules, why don’t you give us the filter rules you have so we can check it out and see if there is any more configuration.
Ok, sir. I have add two rule in the firewall filter:
Block IP: 10.10.10.30 can’t access to local Intranet-Range(192.168.100.150 - 192.168.100.154) use port 80-84
ip firewall filter> add chain=forward src-address=10.10.10.30 protocol=tcp dst-port=81-84 action= drop
But when i add this rule all clients under Mikrotik range(10.10.10.0/24) can’t access to Intranet-Range at all. So why this rule affect to all clients?
Block IP: 10.10.10.50 can access to Local network(Ex: can access to Intranet-Range) but can’t access to internet
IP firewall filter> add chain=forward src-address=10.10.10.50 dst-port=80 action= drop
So this rule can be accept or not?
I wish you can show me the really code to solve this problem because i really conflict with Mikrotik Firewall rule work and how to add second rule to work!