[Frage] - Download via PuTTY -> wget von https / ssl endet in Fehler!

  • Hi folks,


    nachdem ich mir das evtl. schon hinreichend bekannte bluescreen Problem (nach Neustart und mind. einem Jahr keinem FW-Update) eingefangen hatte und lediglich via Platte während laufendem Betrieb entfernen, Abhilfe verschaffen konnte und somit die aktuellste Firmware geladen wurde, funktionieren so manche gewohnte Dinge nicht mehr wie zuvor. Mir fehlt aktuell die Zeit (UND Lust) für trail n error ... denke mal hier ist der ein oder andere, der sofort weiß, was zu ändern ist :)


    Aktuell, noch nicht gelöst, am wichtigsten - wget saugen von https-quellen, das mir bekannte --no-check-certificate funktioniert leider nicht mehr!


    Code
    [admin@TS119PII Public]$ wget --no-check-certificate https://github.com/pyload/pyload/releases/download/v0.4.9/pyload_0.4.9_any.ipk
    --2019-02-02 17:29:41--  https://github.com/pyload/pyload/releases/download/v0.4.9/pyload_0.4.9_any.ipk
    Resolving github.com... 140.82.118.3, 140.82.118.4
    Connecting to github.com|140.82.118.3|:443... connected.
    OpenSSL: error:1409442E:SSL routines:SSL3_READ_BYTES:tlsv1 alert protocol version
    Unable to establish SSL connection.

    Bei wget-ssl endet das ähnlich (Konvertierungsfehler UTF-8), auf Wunsch gerne die exakte Meldung.


    Vielen Dank für eure Rückmeldung!

  • Vielleicht hilft die Option --secure-protocol=TLSv1


    Das vorinstalliert wget ist von 2014 und versucht standardmässig offenbar SSL3 zu verwenden. SSL3 ist aber wegen Sicherheitslücken auf den allermeisten Servern mittlerweile gesperrt.


    Sollte das nicht helfen, dann bleibt noch die neuere Version (naja immerhin von 2015) aus Entware zu verwenden, die unterstützt noch ein paar weitere TLS-Versionen (1.1 und 1.2).

  • Hi und merci,


    ... leider hab ich das auch schon erfolglos versucht ...

    Code
    [admin@TS119PII Public]$ wget --secure-protocol=TLSv1 https://github.com/pyload/.4.9/pyload_0.4.9_any.ipk
    --2019-02-02 18:36:12--  https://github.com/pyload/.4.9/pyload_0.4.9_any.ipk
    Resolving github.com... 140.82.118.4, 140.82.118.3
    Connecting to github.com|140.82.118.4|:443... connected.
    OpenSSL: error:1409442E:SSL routines:SSL3_READ_BYTES:tlsv1 alert protocol version
    Unable to establish SSL connection.

    Grad mal nach ner Alternative geschaut, aria2 ... funktioniert aber ebenfalls nicht :(


    Vorschläge?


    PS: entware wget? Unter /opt /opt/bin finde ich nix

  • Entware-std installieren: https://www.qnapclub.eu/de (Paket https://www.qnapclub.eu/de/qpkg/556 )

    (siehe auch [HowTo] Entware-ng und Linux-Pakete installieren , der Name hat sich geändert, also mal bis zum Ende lesen)


    Danach auf SSH:

    Code
    opkg update
    opkg list wget
    opkg install wget

    Es wird wget 1.20 installiert.


    Ich hab das gerade mal ausprobiert (hab die neuere Version schon installiert):

    Code
    wget --no-check-certificate https://github.com/pyload/.4.9/pyload_0.4.9_any.ipk
    --2019-02-02 19:05:40--  https://github.com/pyload/.4.9/pyload_0.4.9_any.ipk
    Resolving github.com... 140.82.118.4, 140.82.118.3
    Connecting to github.com|140.82.118.4|:443... connected.
    WARNING: cannot verify github.com's certificate, issued by 'CN=DigiCert SHA2 Extended Validation Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US':
      Unable to locally verify the issuer's authority.
    HTTP request sent, awaiting response... 404 Not Found
    2019-02-02 19:05:40 ERROR 404: Not Found.

    Die Datei gibt es wohl nicht (auch nicht im Browser), aber sonst scheint zumindest das eigentliche Problem nicht aufzutreten.

    2 Mal editiert, zuletzt von warpcam ()