I working on a tcp-ip project and I have this code:
TcpClient socketForServer = new TcpClient("localhost", 3600);
In the TcpServer I have this code:
TcpListener tcpListener = new TcpListener(IPAddress.Any, 3600);
Working on "localhost" there is no problem, but when I execute the TcpClient on another machine outside my network replacing localhost with my external IP, it does not work.
The router redirects all that comes through the port 3600 to my machine.
I dont know what I doing wrong, I need help please.