I have a TCP client program and which needs to communicate with servers embedded in devices. There can be 1000's of devices which need to be controlled through the single client program. Since the number of these devices (i.e. tcp servers) is large, so they have to be behind different routers
so the scenerio is like
client ----- "router1"----server1, server 2, server3...server_255
----- "router2" ---server1, server 2...server_255

Since client and server programs are in different networks, so which is the most easiest way to establish communication between client and the servers?
Though it seems simple client-server programming, but the issue is with the NAT , networking translation here. The servers are behind a different private networks So I am looking forward for resolving the NAT problem here. (e.g. like port forwarding, but not sure)
Note: My client and devices are still in my network, so security is not a main concern.
Many Thanks in advance.
