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

I have written a simple Java application that interacts with multiple instances of itself using sockets. The first instance automatically takes on the role of the server, listening on a specific port, and all subsequent instances connect to it.

The problem I'm faced with is that Windows Firewall pops up asking me if I want to unblock the program from "accepting incoming network connections". The thing is: it doesn't matter if you leave the application blocked, because the instances of the application are always on the same machine, so it will always work.

My question is: can I inform Windows somehow that I don't even want incoming network connections to be accepted?

share|improve this question
Clarify. You want windows firewall to automatically block all inbound network requests? – Caladain Jul 30 '10 at 21:24
I want the socket listening on the localhost only, not to incoming network traffic. In other words, I don't want Windows Firewall showing any pop ups in the first place. – Paul Lammertsma Jul 30 '10 at 21:32

1 Answer

up vote 8 down vote accepted

Use the three parameter constructor of the ServerSocket class to specify the IP address as well that the server should listen on. That way you can restrict the server to listen only on 127.0.0.1, unlike the default of 0.0.0.0. See this related SO question, for more details.

EDIT: It is preferable to use InetAddress.getByName(null) to obtain the local address.

share|improve this answer
1  
Great, this works! I had tried that constructor with the last parameter being InetAddress.getLocalHost(), but that is evidently the network address of the localhost. Replacing it with InetAddress.getByName(null) avoids the firewall pop-up. – Paul Lammertsma Jul 30 '10 at 21:36

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.