I have WIN XP
I need to Check: there is not firewall between desktop (my PC IP = 23.4.66.129) to other PC (IP 23.4.66.4) port 8443
how to check that? by telnet from cmd Window ?
I have WIN XP
I need to Check: there is not firewall between desktop (my PC IP = 23.4.66.129) to other PC (IP 23.4.66.4) port 8443
how to check that? by telnet from cmd Window ?
What OS are you running?
tcpdump
on Linux or wireshark on both Linux and Windows). While you listen on the interface that has 23.4.66.4 bound, do atelnet 23.4.66.4 8443
on the source PC. If you see a connection attempt there's no filtering.netcat
.nc -l 8443
listens for connections on that port. Then connect from the source PC usingnc 23.4.66.4 8443
ortelnet 23.4.66.4 8443
. If you are able to connect there's no filtering.Edit: I see you clarified that you're using Windows. There should be a more Windows-friendly way of doing this, but you can still use either Wireshark or the Windows port of netcat.