connect between 2 networks on the same router

Hello
I’m using RB 411U
all I have done is this
Wlan IP: 10.0.0.254/24 - config as AP 802.11 20Mhz - simple WiFi configuration
Ehter1 IP: 192.168.1.254/24

now I have connected:
1.Computer A - connect to the LAN address - 192.168.1.10/24
2.Computer B - connect to the Wlan with address - 10.0.0.10/24

I want to be able to make the 2 computers “talk”

what I need to do more?
add rules in the firewall?
Thanks ,

This is the most basic question of L3 networking and double posting. Set up NAT between them.

If the RB411U is the default gateway for both devices you shouldn’t need to do anything, it should route between them unless you have any firewall rules to prevent it.

can you show me what I need to do in the firewall nat?
which rules to add?
I have found this WiKi
http://wiki.mikrotik.com/wiki/NAT_Tutorial
and try to do as told , but still doesn’t work

this is what I have now:

#
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n disabled=no frequency=auto \
    l2mtu=2290 mode=ap-bridge ssid=Test wireless-protocol=802.11 wmm-support=\
    enabled
/ip address
add address=10.0.0.1/24 interface=ether1 network=10.0.0.0
add address=192.168.1.1/24 interface=wlan1 network=192.168.1.0
/ip firewall nat
add chain=srcnat dst-address=192.168.1.0/24 src-address=10.0.0.0/24 \
    to-addresses=192.168.1.0/24
add chain=dstnat dst-address=10.0.0.0/24 src-address=192.168.1.0/24 \
    to-addresses=10.0.0.1

I don’t have ping between computer connected to Wlan and computer connected to Ether1
also I don’t have ping from computer connected on Ether1 to 192.168.1.1

I’m pretty sure this is en easy and stupid question - so I will happy to know this

Thanks ,


Thank ,

This is correct. No need for nat.

Personally I wouldn’t use NAT.

Are the computers using the Mikrotik as their default gateway??

Can you post up the whole config of the unit??

I have found my problem
my computer was connected to an external switch and firewall - this why I didn’t able to “talk” this 2 networks\computer.
after I have connected the computer just to the router it works

so my mistake ,
now it’s work
Thanks ,