On Thu August 21 2008 08:58, Eiji Hamano (bluequartz) wrote:
> Dear
>
> I am testing something like a httpd software on my bluequartz (CentOs
> 4.1). The httpd software runs with port 23xxx on Linux systems.
>
> Does bluequartz prevent port 23xxx from other machine ?
>
> If I do :
> telnet 127.0.0.1 23020
> on that bluequartz machine, it works fine as;
> GET /ACTION=GETSTATUS HTTP/1.0 <== type in
> "<status>running</status>" <== result
>
>
> If I do :
> telnet 202.xx.xx.xx 23020
> from other bluequartz machine, the connection was closed as;
> "Connection closed by foreign host." <== result
>
> Eiji
Sounds like the software is configured with an access-list restriction
or .htaccess file. Check the configuration for something like:
<Location /usage>
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
# Allow from .example.com
</Location>
Might be <Directory /xxx> instead of Location, but purpose is the same
in terms of the limits (the allow from lines)
You might also look for a .htaccess file in the document root for that
software and see if it is limiting access to only localhost (or 127.0.0.1)
--
Larry Smith
lesmith (at mark) ecsis.net