You can set up a network route between the two networks by adding a route to the routing table of the device that needs to communicate between the two networks.how do I make a network with 192.168.1.x also route to 192.168.2.x
sudo route add -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.1.X
192.168.1.X
with the IP address of the default gateway on the 192.168.1.x
network. 192.168.2.0/24
network via the default gateway on the 192.168.1.x
network. 192.168.2.x
network.