I’m having a strange issue with my RB 2011UiAS 2HnD on RouterOS 6.27. I’ve setup a DHCP server using the wizard. This as resulted in the following settings:
DHCP Server Settings.PNG
DHCP Network Settings.PNG
IP Pool Settings.PNG
Yet I can’t get most of my devices to accept DHCP offers from my RB device. Either the addresses are assigned only to be deassigned 10 seconds later or the DHCP offer expires.
Any thoughs on what this could be and how I should solve this?
This sounds like the clients’ replies are not getting to the server.
Is there a firewall rule on the bridge interface which blocks traffic in the input chain, and would apply to traffic coming in from bridge-local interface?
The default IP is 192.168.88.1/24 on Mikrotiks, (or it was the last time I took one out of a box), and if you changed the IP more recently, there might be firewall rules left around which allow 192.168.88.x but not 188.x
Also - make sure the network=192.168.188.0 on the IP address setting - I don’t know if Mikrotik’s fixed this, but if you change the IP address to a different network and hit OK or Apply, it doesn’t update the network setting.
Yes i have a filter in bridge to prevent my network from software that scan mac, and there is slow in connect with my network , device taking time to obtain ip , can you help me ?
This sounds more like you have a switch with spanning tree turned on, and the ports where users are connecting are doing the normal thing where they don’t forward traffic for about 30 seconds (if standard spanning tree)…
A filter rule would probably either block or not block always - not just cause slower responses.
in wireless access network checking ccq, signal levels, interference and packet loss
in wired access network checking interface stats looking form some counter of errors or crc or something strange, check for negotiation problem on Ethernet connections, configuration of manageable switches, possible cabling issues etc.
another aspect is to seek if the problem is only on certain devices, can be a client device problem under certain specific circumstance
Your bridge firewall seems overly complicated for what you want to do - instead of enumerating each possible combination and blocking them all individually, you should just say “block arp” in the forward chain and have done, regardless of VLAN or in/out interface.
arps to/from the router don’t even go through forward chain - they go through input, which you always want to accept, so no need to block anything there.
Backup your configuration before making this change (just in case):
Your bridge firewall forward chain only needs this one rule:
add action=drop chain=forward mac-protocol=arp
This will still let the Mikrotik itself send/receive ARP requests (those are received in the input chain, and sent through the output chain)
Or, you could be even simpler and just drop ALL forwarded traffic - because it looks like you’re trying to block client-to-client communications, right? If you’re blocking ARP traffic, then realistically, the clients can’t talk to each other using IP anyway… why not just block ALL communication?