Hello.
I’m would like to set up a small workshop network, where I want some machines kept off the internet. The connection looks like this:
The Mikrotik is a RB750Gr3 hEX. The configuration is the default, except I set the IP to static (192.168.1.88) and entered the gateway (192.168.1.1).
I want to configure the Mikrotik in such a way, that the computers (only 192.168.1.77 atm) on the router can only share files with 192.168.1.16.
Problem is, whatever rule I set on the Mikrotik firewall, it seems to be ignored.
For test example, if I make a rule;
chain=forward action=drop
place it on #1
clear all open connections.
This should drop everything, right?
However on the 192.168.1.77 computer everything goes trough…can surf the internet, ping all devices…
Can somebody give me a hint on what I’m doing wrong?
I’m a newbie in networking. I did watch youtube videos on how to set the Mikrotik firewall, search the web, but I couldn’t find an explanation.
The explanation is that your router most probably acts at the moment as a switch (I assume all ports are bridged together for the computers to get an IP address from the same range as the WAN). If you want your firewall to work properly, you should remove your WAN port from the bridge, create a separate LAN network and assign addresses to the computers from it. To confirm the assumptions I made for myself, export the config and post it here:
WAN (ether1) and LAN (bridge) are on the same subnet 192.168.1.0/24, so even if the ether1 is outside the bridge every device sees everything, or if you prefer there is no routing happening.
It seems to me that you have some confusion between 192.168.88.1 (the default address of your Mikrotik) and 192.168.1.88 (that you assigned to the bridge) in dns server.
(1) Yuppers, you need to change everything to .88 network and ONLY have the 192.168.1.X information on the ADDRESS LINE for ether1.
(hint change pool)
(hint change ip dhcp-server network to all .88)
(2) Second mistake is using IP address AND IP DHCP client for your WAN connection its one or the other You Choose!!!
keep the address and disable the ip dhcp client
remove the address and just use ip dhcp client.
Thanks for the replies. I have reset the router to default.
Can I get an outline of the steps I have to take in order to block all traffic between the LAN and WAN, except for file sharing?