How can I bind() to a port number < 1024?



How can I bind() to a port number < 1024?..

Answer / chaitanya

The restriction on access to ports < 1024 is part of a (fairly weak) security scheme particular to UNIX. The intention is that servers (for example rlogind, rshd) can check the port number of the client, and if it is < 1024, assume the request has been properly authorised at the client end.

The practical upshot of this, is that binding a port number < 1024 is reserved to processes having an effective UID == root.

This can, occasionally, itself present a security problem, e.g. when a server process needs to bind a well-known port, but does not itself need root access (news servers, for example). This is often solved by creating a small program which simply binds the socket, then restores the real userid and exec()s the real server. This program can then be made setuid root.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Socket Programming Interview Questions

What exactly is a socket?

0 Answers  


What are raw sockets?

4 Answers   Axis Technologies,


Is socket a hardware or software?

0 Answers  


Explain the TIME_WAIT state.

1 Answers  


What is a socket file?

0 Answers  






How do I send [this] over a socket?

1 Answers  


When will my application receive SIGPIPE?

1 Answers  


What exactly does SO_REUSEADDR do?

1 Answers  


Why does it take so long to detect that the peer died?

0 Answers  


How do I use TCP_NODELAY?

0 Answers  


What is a socket connection?

0 Answers  


system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?

0 Answers  


Categories