- Muchas notas - Fran Acién

20201217 - Netcat Client-server port test connection

An easy tool for testing ports is to use netcat. Here is an example to open a port in a machine, and try to conenct from the other side:

Server side:

netcat -l -p 3300

Client side:

netcat 192.168.255.6 3300