----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
Hi,
JServ is listening on all IP addresses availabe on the host on which it is
running and not only to 127.0.0.1 as intended (using default port 8007):
$ netstat -an | grep 8007
*.8007 *.* 0 0 0 0 LISTEN
I've looked in the Java source of JServ and found the following lines defining
clearly the address (127.0.0.1) to listen to:
JServ.java/line#442: socket = new AuthenticatedSocket("127.0.0.1", port, new
MD5(), secret);
JServ.java/line#448: socket = new AuthenticatedSocket("127.0.0.1", port);
My config:
Solaris 2.5.1
Apache 1.3.9
Apache JServ 1.0
JDK1.1.8 (green threads)
JSDK 2.0
Otherwise JServ is running great and by defining 'security.allowedAddresses=127
.0.0.1' in jserv.properties, all connections not originating on the host
itself are refused by JServ.
Does anybody have an idea where this problem comes from and how to cure it ?
Thanks for your help,
Peter
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]