In linux is there a way to tell the system that never give a port for client connection, but instead allocate it only for requests for listening(server).

That is, given a port P, If a proc wants to connect to host X then dont give the port P, give some other port. But if a proc wants to listen on port P then its OK?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

/proc/sys/net/ipv4/ip_local_port_range contains the only range of IPv4 ports that the system will use to connect with.

link|improve this answer
awesome...can i give a multiple ranges here. – Suraj Chandran May 10 '11 at 6:33
i mean for e.g. 50000-55000 55100-60000. so that basically 55001 to 55099 are reserved for listening...Is this possible? – Suraj Chandran May 10 '11 at 6:34
Unfortunately no. It can only contain a single consecutive range. – Ignacio Vazquez-Abrams May 10 '11 at 6:36
feedback

Your Answer

 
or
required, but never shown

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