0

I need to set up two individual private network with two routers

Router1: (got wan-connection)

LAN:
192.168.1.1
255.255.255.0
dhcp range 192.168.1.100-150
dhcp static 192.168.1.129 hw:router:2:xx:bb

Router2 (wired to router1)

WAN settings:
Ip assigned 192.168.1.129
Service provider gateway: 192.168.1.1

Lan: 192.168.0.1 255.255.255.0 dhcp range 192.168.0.100-200

example_image

initially this gives both router/network internet-connection and ip-range, but network2 can access network1's computers. I need to make network2 unable to access network one. I cant figure out how to use subnet to do so

putrid
  • 1

1 Answers1

0

Do this:

  • Connect one of Router1 LAN ports to Router2 WAN port
  • Enable Router2 DHCP server and set its IP range to 192.168.2.x

The sub-network of Router1 will then use the IP range of 192.168.1.x while the sub-network of Router2 will use 192.168.2.x, where the two will inaccessible one to the other.

For more information see the post
Expanding wireless coverage: What are the differences between LAN to LAN and LAN to WAN when it comes to connecting two wireless routers?

harrymc
  • 498,455