computer A(192.168.1.134) needs to establish a UDP connection to computer C(192.168.0.30).
As you can see both are on a different subnetwork. Now I have computer B which has 2 IP addresses, one for each subnetwork (192.168.1.135 and 192.168.0.37). A can ping B and B can C but A cant ping C. How can I use computer B to establish the connection between A and B. Remember that computer A needs to connect with a program I made so I cant do any command line stuff. Would port forwarding work? How would I do this?
Im thinking of doing SSH -L 10002:192.168.0.30:10002 192.168.1.135 but then even if this works will I still have create another forwarding so that communication will go both ways?