SSL-Fehler curl/wget unbekanntes Protokoll/falsche Versionsnummer

SSL-Fehler curl/wget unbekanntes Protokoll/falsche Versionsnummer

Ich habe versucht, lokal gehostete HTTPS-URLs in Befehlszeilen-/Cron-Jobs zu verwenden und bekomme diese Fehler. Die Curl-Ausgabe ist ähnlich. Dieselben Befehle funktionieren einwandfrei, wenn sie auf anderen Servern verwendet werden.

Standard

[root@tejon ~]# wget -O /dev/null https://www.domain.com/cron/notification.php
--2013-05-27 10:33:38--  https://www.domain.com/cron/notification.php
Resolving www.domain.com... 173.45.38.60
Connecting to www.domain.com|173.45.38.60|:443... connected.
OpenSSL: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
Unable to establish SSL connection.

TLSv1

[root@tejon ~]# wget --secure-protocol=TLSv1 -O /dev/null https://www.domain.com/cron/notification.php
--2013-05-27 10:45:59--  https://www.domain.com/cron/notification.php
Resolving www.domain.com... 173.45.38.60
Connecting to www.domain.com|173.45.38.60|:443... connected.
OpenSSL: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
Unable to establish SSL connection.

SSLv2

[root@tejon ~]# wget --secure-protocol=SSLv2 -O /dev/null https://www.domain.com/cron/notification.php
--2013-05-27 10:47:18--  https://www.domain.com/cron/notification.php
Resolving www.domain.com... 173.45.38.60
Connecting to www.domain.com|173.45.38.60|:443... connected.

und es blockiert die Eingabe, aber die Datei wird nicht ausgeführt.

SSLv3

[root@tejon ~]# wget --secure-protocol=SSLv3 -O /dev/null https://www.domain.com/cron/notification.php
--2013-05-27 10:43:23--  https://www.domain.com/cron/notification.php
Resolving www.domain.com... 173.45.38.60
Connecting to www.domain.com|173.45.38.60|:443... connected.
OpenSSL: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
Unable to establish SSL connection.

Antwort1

Durch den Rechenzentrumssupport gelöst.

Domänen wurden zu /etc/hosts hinzugefügt, ich weiß nicht wie, aber nach dem Entfernen hat es funktioniert.

verwandte Informationen