Pinging/Connecting across subnets

Good afternoon,

I have spent a few hours reading the forums and aren’t progressing so are after some assistance please.

I’m simply trying to connect across network subnets.

Hardware Simplified
Mikrotik 750GL - RouterOS 6.39.1
Billion 7800N[/img][/img]XL Router
Meraki Switch - MS220-24P

As per diagram, Mikrotik port 5 is configured to 192.168.178.150 via Winbox/StaticIP.

When connected to the Meraki switch, I am unable to ping anything on 192.168.178.x eg. 192.168.178.210 via the Winbox Tools->Ping menu
When I replace the Mikrotik with a Notebook, I can ping as I wish.

The ultimate goal is to be able to ping from 192.168.88.x to 192.168.178.x though I figured if I can’t ping from the Mikrotik box, pointless trying to ping across networks

** gateway IP address has been removed for privacy
ip address and ip route details below

*** I changed port 5 to have no Master and can ping via WinBox tools

 [admin@MikroTik] > ip route print

 #      DST-ADDRESS        PREF-SRC        GATEWAY            DISTANCE
 0 ADS  0.0.0.0/0                          XXX.XX.83.129             1
 1 ADC  XXX.XXX.83.128/26   XXX.XXX.83.149   ether1-gateway            0
 2 ADC  192.168.88.0/24    192.168.88.1    ether2-master-l...        0
 3 ADC  192.168.178.0/24   192.168.178.150 ether5-slave-local        0
 4   S  192.168.178.0/24                   192.168.178.254           1
 5   S  192.168.178.0/24                   192.168.178.254           1

[admin@MikroTik] > ip address print
Flags: X - disabled, I - invalid, D - dynamic
 #   ADDRESS            NETWORK         INTERFACE
 0   ;;; default configuration
     192.168.88.1/24    192.168.88.0    ether2-master-local
 1 D XXX.XXX.83.149/26   XXX.XXX.83.128   ether1-gateway
 2   192.168.178.150/24 192.168.178.0   ether5-slave-local

Thanks in advance.

As per diagram> , Mikrotik port 5 is configured to 192.168.178.150 via Winbox/StaticIP.

It seems you forgot to attach the diagram?

Apologies, corrected the URL link for diagram.

Post a full export: open a New Terminal and issue

/export

Thanks for reviewing.

[admin@MikroTik] > /export
# jun/14/2017 23:22:28 by RouterOS 6.39.1
# software id = G520-JHUJ
#
/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway
set [ find default-name=ether2 ] name=ether2-master-local
set [ find default-name=ether3 ] master-port=ether2-master-local name=\
    ether3-slave-local
set [ find default-name=ether4 ] master-port=ether2-master-local name=\
    ether4-slave-local
set [ find default-name=ether5 ] name=ether5-slave-local
/ip ipsec proposal
set [ find default=yes ] enc-algorithms=3des
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=default-dhcp authoritative=after-2sec-delay disabled=no \
    interface=ether2-master-local lease-time=3d name=default
system logging action
set 0 memory-lines=100
set 1 disk-lines-per-file=100
/interface l2tp-server server
set caller-id-type=ip-address
/ip address
add address=192.168.88.1/24 comment="default configuration" interface=\
    ether2-master-local network=192.168.88.0
add address=192.168.178.150/24 interface=ether5-slave-local network=\
    192.168.178.0
/ip dhcp-client
add comment="default configuration" dhcp-options=hostname,clientid disabled=no \
    interface=ether1-gateway
/ip dhcp-server network
add address=192.168.88.0/24 comment="default configuration" dns-server=\
    192.168.88.1 gateway=192.168.88.1
/ip dns
set allow-remote-requests=yes max-udp-packet-size=512
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add action=accept chain=input comment="default configuration" protocol=icmp
add action=accept chain=input comment="default configuration" connection-state=\
    established
/ip dns
set allow-remote-requests=yes max-udp-packet-size=512
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add action=accept chain=input comment="default configuration" protocol=icmp
add action=accept chain=input comment="default configuration" connection-state=\
    established
add action=accept chain=input comment="default configuration" connection-state=\
    related
add action=drop chain=input comment="default configuration" in-interface=\
    ether1-gateway
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" \
    out-interface=ether1-gateway
add action=accept chain=srcnat out-interface=ether2-master-local src-address=\
    192.168.88.0/24
add action=accept chain=srcnat out-interface=ether5-slave-local src-address=\
    192.168.178.0/24
/ip route
add distance=1 dst-address=192.168.178.0/24 gateway=192.168.178.254
add distance=1 dst-address=192.168.178.0/24 gateway=192.168.178.254
/ip service
set api disabled=yes
/system clock
set time-zone-name=Australia/Brisbane
/tool mac-server
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local

Not sure because seem you edited the export and cannot read what VLAN is used on the Meraki.

Let’s say the Meraki is using VLAN 17.

You need to add a VLAN interface on ether2 with VID=17, then move 192.168.88.1/24 to that VLAN interface.

Same goes for DHCP server, you need to move it to the VLAN interface.

What’s the default gateway on the Billion Router? It should be 192.168.178.150.

For routing to work, both extremes involved need proper bidirectional routing: A needs to know how to reach B, and B how to reach A.