How should I choose a port number for my server?



How should I choose a port number for my server?..

Answer / chaitanya

The list of registered port assignments can be found in STD 2 or RFC 1700. Choose one that isn't already registered, and isn't in /etc/services on your system. It is also a good idea to let users customize the port number in case of conflicts with other un- registered port numbers in other servers. The best way of doing this is hardcoding a service name, and using getservbyname() to lookup the actual port number. This method allows users to change the port your server binds to by simply editing the /etc/services file.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Socket Programming Interview Questions

What is socket address with example?

0 Answers  


What is af_inet in socket?

0 Answers  


What is socket programming in java?

0 Answers  


Is tcp or unix socket faster?

0 Answers  


What's the difference between impact sockets and regular sockets?

0 Answers  






How do I properly close a socket?

1 Answers  


How can my client work through a firewall/proxy server?

1 Answers  


Are unix sockets faster than tcp?

0 Answers  


Why do not my sockets close?

1 Answers  


What is the difference between a socket and a port?

0 Answers  


Whats the difference between select() and poll()?

0 Answers  


How come select says there is data, but read returns zero?

1 Answers  


Categories