Routing between two mikrotik's

Hello,

I currently ruling my home network by two RB951G-2HnD devices.
home-net.png
I would like to add a WiFi printer to my network, and would like the printer to be available from the network 192.168.1.X also.

I have added the route : 192.168.88.0/24 gw=192.168.1.100 to my first mikrotik. As a result I’m able to ping devices with address 192.168.88.X from mikrotik’s winbox console, but not from a PC with address 192.168.1.XXX.

routing table from mikrotik #1.
Снимок.PNG
How can I make the printer be available from the network 192.168.1.X ?

I think there is something with the firewall on the Wifi router. Can you enter the terminal and write

ip firewall filter print

and write out the output.

hello,

0    ;;; default configuration
      chain=input action=accept protocol=icmp log=no log-prefix="" 

 1    ;;; default configuration
      chain=input action=accept connection-state=established log=no log-prefix="" 

 2    ;;; default configuration
      chain=input action=accept connection-state=related log=no log-prefix="" 

 3    chain=input action=accept protocol=tcp dst-port=8291 log=no log-prefix="" 

 4    ;;; default configuration
      chain=input action=drop in-interface=ether1-gateway log=no log-prefix="" 

 5    ;;; default configuration
      chain=forward action=accept connection-state=established log=no log-prefix="" 

 6    ;;; default configuration
      chain=forward action=accept connection-state=related log=no log-prefix="" 

 7    ;;; default configuration
      chain=forward action=drop connection-state=invalid log=no log-prefix=""

I have added the route : 192.168.88.0/24 gw=192.168.1.100 to my first mikrotik. As a result I’m able to ping devices with address 192.168.88.X from mikrotik’s winbox console, but not from a PC with address 192.168.1.XXX.

I would suggest setting a default gateway on a PC in the 192.168.1.0/24 network to 192.168.1.100 and see if you can access 192.168.88.0/24. That will tell you if it’s Router A or Router B at fault [don’t worry, I’ve chosen names for your routers for you, free of charge - A is lowest numbered].

Having said that, if Router B is mostly default then there will be some NAT rules for ether1 that will be confounding your attempts to reach your wireless printer. Furthermore, you will probably find that you can ping 192.168.1.0/24 from the printer just fine!

Hi,

  • I have set the GW on my PC (192.168.1.253) to be (192.168.100.1) and after that I was able to at least ping devices from 192.168.88.0/24 network.
ping 192.168.88.1

Pinging 192.168.88.1 to 32 bytes of data:
The response from the 192.168.88.1: bytes = 32 time <1ms TTL = 64
The response from the 192.168.88.1: bytes = 32 time <1ms TTL = 64
The response from the 192.168.88.1: bytes = 32 time <1ms TTL = 64

Statistics Ping to 192.168.88.1:
    Packages: sent = 3 = 3 received, lost = 0
    (0% loss)
Approximate round-trip time in milliseconds:
    Minimum = 0msek, Maximum = 0ms, Average = 0 ms
Control-C
PS C: \ Users \ parents> ping 192.168.88.254

Pinging 192.168.88.254 to 32 bytes of data:
Answer from 192.168.88.254: bytes = 32 time <1ms TTL = 63
Answer from 192.168.88.254: bytes = 32 time <1ms TTL = 63
Answer from 192.168.88.254: bytes = 32 time <1ms TTL = 63
Answer from 192.168.88.254: bytes = 32 time <1ms TTL = 63

I had to rewert this PC setting back to original in order to PC access tje network normally.
Devices from 192.168.88.0/24 are able to access devices from 192.168.1.0/24 normally.