Sign up ×
Server Fault is a question and answer site for system and network administrators. It's 100% free, no registration required.

Leadup:

Issue:

On some machines, people receive the following:

Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don't have. Error code: ERR_SSL_PROTOCOL_ERROR

Pattern:

The only real pattern I can see is that people with Time Warner in their office cannot load the site.

Evidence and Thoughts:

  1. The site works on my laptop and my phone, but when I connected to the wifi in the office with Time Warner, it stopped working. They had an Arris TG### router from Time Warner.
  2. Other people complained that they can't load the site with the same error and I confirmed that they are also using Time Warner.
  3. No idea if this would be related to the router or the ISP.
  4. Have tested this with other friends in various locations without any problems.

This is just a theory and any other ideas and solutions/suggestions would be very helpful.

The site is https://tabularasa-ny.com/

share|improve this question
    
First, fix these serious problems. – Michael Hampton Mar 17 '15 at 15:52
up vote 3 down vote accepted

The host has both an IPv4 and IPv6 address. The web server listens on both IP port 443 so that the TCP connect is successful, but you somehow messed the SSL configuration for IPv6 up, so that the SSL upgrade on the IPv6 address fails. There are enough clients out there which use IPv6 if available and prefer it to IPv4 and these clients will fail.

SSLLabs will not tell you about it, because it does not support IPv6 yet. But analyze.pl will tell you about it:

$ perl analyze-ssl.pl  tabularasa-ny.com
-- tabularasa-ny.com port 443
! failed SSL upgrade on IP 2600:3c03::f03c:91ff:fe84:5fd
...

Apart from that please fix the issues reported by SSLLabs.

The only real pattern I can see is that people with Time Warner in their office cannot load the site.

From searching a bit on the web it looks like that Time Warner has IPv6 enabled for their customers. Since all modern OS can do IPv6 and will use it if available this matches my problem description.

share|improve this answer
    
Thanks. That helped a lot. – zeusstl Mar 18 '15 at 19:35
    
Thanks. That helped a lot. The final solution was here:link The first line of each VirtualHost should look like this to include ipv6: <VirtualHost 173.255.198.65:443 [2600:3c00::f03c:91ff:fe93:824a]:443> – zeusstl Mar 18 '15 at 19:41

Probably some chippers is not active ( which is good ) Try to notice what systems / browsers has this problem.

BTW: https://www.ssllabs.com/ssltest/analyze.html?d=tabularasa-ny.com

You are Poodle Attack Exploitable...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.