Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When any client program communicates with server client uses an ephemeral port number to communicate with the server on server port. Is there any way to control/Select the client ephemeral port number in Java.

Thanks and Regards,

Venkata Pavan Kumar Sannisetty.

share|improve this question
Why do you want to do this? – Thor Jul 13 '11 at 8:15
From the firewall i need to write this fixed local port rule and also thought it will be good to learn – Sunny Jul 13 '11 at 10:38

1 Answer

up vote 1 down vote accepted

Yes, you specify the local address / portnumber:

Socket(InetAddress address, int port, InetAddress localAddr, int localPort)
      Creates a socket and connects it to the specified remote address on the specified remote port.

http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#Socket%28java.net.InetAddress,%20int,%20java.net.InetAddress,%20int%29

share|improve this answer
What is the Use of Local Address argument in the method ........... – Sunny Jul 13 '11 at 5:47
1  
@Pavan, localAddress is the address of your local interface (use null if you do not care) – Op De Cirkel Jul 13 '11 at 6:00
Does it specify like if i have two network cards which network card to use ? – Sunny Jul 13 '11 at 6:05
How i can reserve this local port. In Linux i think i need to update ip_local_reserverd_ports file how can i handle this in windows ? – Sunny Jul 13 '11 at 6:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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