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
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