vote up 1 vote down star

I want to test a connection to a machine in my local intranet. I know the IP address.

What port number should I use? 555? BTW: I'm using .NET.

flag
Port 8080. Easy to remember, above 1024. – Byron Whitlock Dec 11 at 0:07

5 Answers

vote up 5 vote down

You can use any but avoid the 'well known' port numbers

More details on such ports here.

link|flag
vote up 1 vote down

Ports below 1024 are considered privileged so shouldn't be used.

There are some ports above 1024 that are designated as "well known" ports, so you should probably steer away from them. Check the definitive IANA list for details.

And to be completely paranoid safe, grab a copy of the sysinternals tool Tcpview to check what ports are being used on your machine.

link|flag
vote up 0 vote down

The port is generally of no consequence as long is it isn't in use by something else and also there is not network filtering happening for that port, I generally chose something random in the thousands like 32581

link|flag
vote up 0 vote down

Anything above 1024 is good.

The reason for that is that all the ports below are reserved for specific protocols or future use.

link|flag
vote up 0 vote down

If your goal is just to open a TCP connection to a Windows machine (XP/Vista/2003/2008), without having to stand up your own service, then you aren't going to break anything if you open up a connection (and then close it without sending a message) to port 445 (Windows-DS).

If you want to set up your own server, then follow the other recommendations about unused ports above 1024.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.