I'm running a test service, and the problem is it only binds to localhost:
hendry@deb02 ~$ sudo lsof -i | grep openssl
openssl 18599 root 3r IPv4 65383 0t0 TCP localhost:http-alt (LISTEN)
So when I try telnet to the machine:
hendry@x201 ~$ telnet tests.wacapps.net 8080
Trying 87.119.204.85...
telnet: Unable to connect to remote host: Connection refused
The firewall port is definitely open. Does anyone how I can get it perhaps redirect TCP *:http-alt (LISTEN) to this service or fix OpenSSL 1.0.0d 8 Feb 2011?
openssl s_server -accept 127.0.0.1:443works. Just drop the "127.0.0.1:" and it'll bind globally, though. – BMDan Jul 6 '11 at 0:46