Sorry for such a dumb question. I saw multiple threads here, tried multiple solutions and none of them worked for me (or maybe I didnt imlement them properly). I’m quite a newbie in mikrotik.
I have a Modem which is in Bridge mode (on port 4). Modem’s network is 192.168.1.0/24 and the modem is accessible on 192.168.1.254 if plugged in any other modem’s port (1-3)
Mikrotik is connected to modem bridged port (4). Mikrotik is getting public address which is getting set on ether1. Internet is working fine. LAN network of the mikrotik: 10.0.0.0/24
I want to be able to access the modem (192.168.1.254) from LAN (10.0.0.0/24)
p.s. I can ping (ARP ping only specifying ether1 interface) from mikrotik to modem. NOT ARP ping gets the “timeout”.
p.p.s. Adding 192.168.1.x/24 address to ether1 interface doesnt help
/interface bridge
add admin-mac=18:FD:74:C1:8F:81 auto-mac=no comment=defconf name=bridge
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/ip pool
add name=dhcp ranges=10.0.0.30-10.0.0.254
/ip dhcp-server
add address-pool=dhcp interface=bridge lease-time=8h name=defconf
/interface bridge port
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=ether3
add bridge=bridge comment=defconf interface=ether4
add bridge=bridge comment=defconf interface=ether5
add bridge=bridge comment=defconf interface=wifi1
add bridge=bridge comment=defconf interface=wifi2
/ip neighbor discovery-settings
set discover-interface-list=LAN
/ipv6 settings
set disable-ipv6=yes
/interface list member
add comment=defconf interface=bridge list=LAN
add comment=defconf interface=ether1 list=WAN
/ip address
add address=10.0.0.1/24 comment=defconf interface=bridge network=10.0.0.0
/ip arp
add address=192.168.1.254 interface=ether1 mac-address=1C:57:3E:79:16:8F
/ip dhcp-client
add comment=defconf interface=ether1
/ip dhcp-server network
add address=10.0.0.0/24 comment=defconf dns-server=10.0.0.1 gateway=10.0.0.1 netmask=24
/ip dns
set allow-remote-requests=yes servers=10.0.0.50,1.1.1.1
/ip dns static
add address=10.0.0.1 comment=defconf name=router.lan
/ip firewall filter
add action=accept chain=input comment="defconf: accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=input comment="defconf: drop ICMP" protocol=icmp
add action=accept chain=input comment="defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=drop chain=input comment="defconf: drop all not coming from LAN" in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" connection-state=established,related hw-offload=yes
add action=accept chain=forward comment="defconf: accept established,related, untracked" connection-state=established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=forward comment="defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat connection-state=new in-interface-list=WAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" ipsec-policy=out,none out-interface-list=WAN
Thanks in advance for help