up vote 12 down vote favorite
3
share [g+] share [fb]

As simple as it gets - can two applications on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain ip and the other to another remote ip? I know I can have one application that starts off two threads (or forks) to have similar behavior, but can two applications that have nothing in common do the same?

thanks.

link|improve this question
feedback

7 Answers

up vote 26 down vote accepted

For TCP/IP, no. You can only have one application listening on a single port at one time. Now if you had 2 network cards, you could have one application listen on the first IP and the second one on the second IP using the same port number.

For UDP (Multicasts), multiple applications can subscribe to the same port.

link|improve this answer
2  
"one application listening on a single port" that's the reason why ports exist -- to allow multiple applications to share the network without conflicts. – S.Lott Nov 7 '09 at 19:41
5  
One listener per port per IP address. Adding another network interface is a way to get a second IP address. Your platform probably supports virtual interfaces which is another way to get two IP addresses with one physical network card. – John M Nov 9 '09 at 22:02
feedback

In principle, no.

It's not written in stone; but it's the way all APIs are written: the app opens a port, gets a handle to it, and the OS notifies it (via that handle) when a client connection (or a packet in UDP case) arrives.

If the OS allowed two apps to open the same port, how would it know which one to notify?

But... there are ways around it:

  1. As Jed noted, you could write a 'master' process, which would the the only one that really has the port and notifies others, using any logic it wants to separate client requests.
  2. On Linux and BSD (at least) you can set up 'remapping' rules that redirect packets from the 'visible' port to different ones (where the apps are listening), according to any network related criteria (maybe network of origin, or some simple forms of load balance).
link|improve this answer
5  
iptables -m statistic --mode random --probability 0.5 is fun. – Jed Smith Nov 7 '09 at 21:27
@Jed: +1 for sheer awesomeness. – Paul Lammertsma Nov 10 '09 at 1:25
1  
What exactly signify "Opens a port"? I understand the sentence but do you know what exactly the system do when it open a port and handle it? I know that when you want to open a port with TCP, you get a stream and that stream is your connection with the remote but I search on the web and don't found a very good explanation. – Samuel Dec 16 '10 at 11:15
1  
@Samuel: opening a port (in server mode) means getting a file descriptor, and when the system gets a SYN packet to that port number, responds with SYN+ACK and generates an event on the associated file descriptor. the application responds to that event with an accept() call, which creates a new file descriptor associated to the specific stream, leaving the original server descriptor free to get new connections from clients – Javier Dec 16 '10 at 12:00
Thank you very much for the fast answer. With these information, I will search for more details SYN+ACK and file descriptor. – Samuel Dec 17 '10 at 1:47
feedback

No. Only one application can bind to a port at a time, and behavior if the bind is forced is indeterminate.

With multicast sockets -- which sound like nowhere near what you want -- more than one application can bind to a port as long as SO_REUSEADDR is set in each socket's options.

You could accomplish this by writing a "master" process, which accepts and processes all connections, then hands them off to your two applications who need to listen on the same port. This is the approach that Web servers and such take, since many processes need to listen to 80.

Beyond this, we're getting into specifics -- you tagged both TCP and UDP, which is it? Also, what platform?

link|improve this answer
both are of interest to me. The platform is windows, but if the answer is different for Linux, it would be nice to know – nadiv Nov 7 '09 at 19:49
feedback

Yes! For example, you can have at the same time:

- Apache listening on yoursite.com/dir1 (port 80)
- Tomcat listening on yoursite.com/dir2 (port 80)

To get this, start Tomcat on port 8080 (it will be later redirected to 80), start Apache on port 80, and configure it like this:

# Put this after the other LoadModule directives
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so

# Put this in the main section of your configuration (or desired virtual host, if using them)

ProxyRequests Off

<Directory proxy:*>
   Order Deny,Allow
   #Deny from all
   Allow from all
</Directory>

ProxyPass /dir2 http://127.0.0.1:8080/dir2
ProxyPassReverse /dir2 http://127.0.0.1:8080/dir2
link|improve this answer
feedback

Yes, it happened to me, as described here

link|improve this answer
feedback

Yes (for TCP) you can have two programs listen on the same socket, if the programs are designed to do so. When the socket is created by the first program, make sure the SO_REUSEADDR option is set on the socket before you bind(). However, this may not be what you want. What this does is an incoming TCP connection will be directed to one of the programs, not both, so it does not duplicate the connection, it just allows two programs to service the incoming request. For example, web servers will have multiple processes all listening on port 80, and the O/S sends a new connection to the process that is ready to accept new connections.

SO_REUSEADDR

Allows other sockets to bind() to this port, unless there is an active listening socket bound to the port already. This enables you to get around those "Address already in use" error messages when you try to restart your server after a crash.

link|improve this answer
feedback

If at least one of the remote IPs is already known, static and dedicated to talk only to one of your apps, you may use iptables rule (table nat, chain PREROUTING) to redirect incomming traffic from this address to "shared" local port to any other port where the appropriate application actually listen.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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