Hello, I have basic quotation I need help connecting two different networks. I attaching picture of my network setup and my code. It looks like communication working only one way and not completely. What I am missing? Why PC on each side can’t see each other? I use only port Ether2 and Ether3 no other connections or WAN.
/interface ethernet
set [ find default-name=ether1 ] disabled=yes
set [ find default-name=ether4 ] disabled=yes
set [ find default-name=ether5 ] disabled=yes
/port
set 0 name=serial0
/ip address
add address=10.70.8.188/24 interface=ether2 network=10.70.8.0
add address=192.168.1.100/24 interface=ether3 network=192.168.1.0
/ip firewall filter
add chain=input connection-state=established,related dst-address=
192.168.1.101 protocol=tcp src-address=10.70.8.188
add chain=input connection-state=established,related dst-address=10.70.8.188
protocol=tcp src-address=192.168.1.101
add chain=forward connection-state=established,related dst-address=
10.70.8.188 protocol=tcp src-address=192.168.1.101
add chain=forward connection-state=established,related dst-address=
192.168.1.101 protocol=tcp src-address=10.70.8.188
add action=drop chain=forward connection-state=established,related
add action=drop chain=input connection-state=established,related
add chain=forward connection-state=established,related
add chain=input connection-state=established,related
/ip firewall nat
add action=src-nat chain=srcnat dst-port=44000 protocol=tcp src-address=
192.168.1.101 to-addresses=10.70.8.188
add action=dst-nat chain=dstnat dst-address=10.70.8.188 dst-port=44000
protocol=tcp to-addresses=192.168.1.101 to-ports=44000
/romon port
add disabled=no