Page 1 of 1

How to routing all Lan Ports between two Subnets

Posted: Wed Jun 04, 2014 11:39 pm
by Neo32
Hallo,

I have a new Mikrotik RB2011U.

We have two Subnets:
Subnet 1: 192.168.0.0/24
Subnet 2: 192.168.10.0/24

Now I need help to configure the mikrotik that the PCs from Subnet 1 can talk with the other PCs in Subnet 2.
Each port should be able to talk to both networks.

In that thread http://forum.mikrotik.com/viewtopic.php?f=2&t=67400 said tws101 that mikrotik automatically do that, but in my config he don't this.

I'm a Neewbie with Mikrotik and hope you can help me!

Thanks in advance!

Re: How to routing all Lan Ports between two Subnets

Posted: Sat Jun 07, 2014 9:24 am
by CTrain
We need more information, do you have a firewall/nat setup and what is the configuration, do you have the routes added under ip/routes are the firewalls on the computers blocking network connections from computers on other subnets etc.

Re: How to routing all Lan Ports between two Subnets

Posted: Mon Jun 16, 2014 3:51 pm
by Neo32
Hi Guys,

I found the answer for the problem now.

My Steps:

1) Create 2 Bridges
2) Give each bridge a IP from the Subnet
3) Activate RSTP bei each Bridge

At the Computers:
1) deactivate all unused Network Connection (it doesn't work in my configuration when more connections are active)
2) Give the active Network Connection the IP from the Bridge from the same network for the Standard Gateway
3) Check Firewall Settings

In my Configuration i forget to set the Standard Gateway IP.

After I set, it works correctly.

Thanks for your help!

Re: How to routing all Lan Ports between two Subnets

Posted: Thu Jul 03, 2014 2:41 am
by harrysuccess
Hallo,

I have a new Mikrotik RB2011U.

We have two Subnets:
Subnet 1: 192.168.0.0/24
Subnet 2: 192.168.10.0/24

Now I need help to configure the mikrotik that the PCs from Subnet 1 can talk with the other PCs in Subnet 2.
Each port should be able to talk to both networks.

In that thread http://forum.mikrotik.com/viewtopic.php?f=2&t=67400 said tws101 that mikrotik automatically do that, but in my config he don't this.

I'm a Neewbie with Mikrotik and hope you can help me!

Thanks in advance!
/ip firewall address list
add address=192.168.0.0/24 list=Local
add address=192.168.10.0/24 list=Local

/ip fi ma
add chain=prerouting action=accept src-address=192.168.0.0/2 dst-address-list=Local comment="ALL Local Conncetion"
add chain=prerouting action=accept src-address=192.168.10.0/2 dst-address-list=Local

/ip fi nat
add chain=srcnat action=masquerade src-address-list=Local dst-address-list=Local