Results 1 to 7 of 7
Hi, i have just found out what i am to do for my final year project for Uni, and know that i will need https protocol enabled in order to ...
- 10-25-2004 #1
best way to see if HTTPS is enabled
Hi, i have just found out what i am to do for my final year project for Uni, and know that i will need https protocol enabled in order to do it. What's the best way to see if it's enabled? And if not, how to install it?
"I am not an alcoholic, alcoholics go to meetings"
Registered Linux user = #372327
- 10-25-2004 #2
- 10-25-2004 #3
i have tried this, but i kep getting an error saying:
whenever i try to open https://192.168.0.1 192.168.0.1 being my webserver i get that mesageThe connection to 192.168.0.1 has been terminated unexpectedly. Some data may have been transferred"I am not an alcoholic, alcoholics go to meetings"
Registered Linux user = #372327
- 10-26-2004 #4Linux Newbie
- Join Date
- Sep 2003
- Location
- St.Charles, Missouri, USA
- Posts
- 201
Should tell you if https is up and runningCode:nmap -p 443 192.168.0.1
Powered by Gentoo
never ever ever use the hardened option in make.conf!
- 10-26-2004 #5
doesn't nmap just tell u what porrts are open on a pc? I have just tried that command, and it sez port 443/tcp is open, but i still get the error.
"I am not an alcoholic, alcoholics go to meetings"
Registered Linux user = #372327
- 10-26-2004 #6Linux User
- Join Date
- Oct 2004
- Location
- /dev/random
- Posts
- 404
A port is shown open only when there is a daemon (or service in winbloze terminology) listening on it.
Originally Posted by sdousley
Try telnetting to port 443 - similar to telnetting to http port.
Something like telnet myhost https or telnet myhost 443 and try to carry out the HTTP dialog as usual - just like a browser would do.
If the server responds properly, you've got the server configured for https.
Otherwise, looking into logs of the server might help diagnose the problem.
The msgs returned by the server might be helpful too.The Unforgiven
Registered Linux User #358564
- 10-27-2004 #7Linux Enthusiast
- Join Date
- Jun 2002
- Location
- San Antonio
- Posts
- 621
If you are getting that "some data may have been transferred" error, it is because apache is listening on port 443, but doesn't have the SSLEngine turned on. If you run 'openssl s_client -host 192.168.0.1 -port 443' it will attempt to make an SSL connection to 192.168.0.1:443. You can then type something like:
GET / HTTP/1.0
In order to get the default webpage.
Best,
SamuelI respectfully decline the invitation to join your delusion.


Reply With Quote
