Quote:
Originally Posted by mikelynch229
From the console command line I can connect successfully using #>telnet localhost 8080
I can also connect to port 80 remotely.
When I try to telnet remotely I get connection refused.
|
I'm not familiar with this software, but
Code:
tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN 1660/java
this line indicates that port 8080 is bound to the loopback interface, which is why you can only connect from localhost and
Code:
tcp 0 0 :::80 :::* LISTEN 1019/httpd
this line indicates that port 80 is listening on
any available interface which is why you can connect remotely.
Somewhere you need to configure the software on port 8080 to either listen on your IP address, or the default address (0.0.0.0) so that you see either this:
Code:
tcp 0 0 your.ip.address.here:8080 0.0.0.0:* LISTEN 1660/java
or this:
Code:
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 1660/java