0

Ansible には Pythonjunos-ezncモジュールが必要です。

junos-eznc >= 1.2.2 が必要ですが、インストールされていないようです。

を使用してインストールできます。pip install junos-eznc

ただし、実行すると、次のsudo pip install junos-ezncようになります。

Collecting junos-eznc
/usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/connection.py:279: SystemTimeWarning: System time is way off (before 2014-01-01). This will probably lead to SSL verification errors
  SystemTimeWarning
/usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
  SNIMissingWarning
/usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
  InsecurePlatformWarning
  Could not fetch URL https://pypi.python.org/simple/junos-eznc/: There was a problem confirming the ssl certificate: [Errno 1] _ssl.c:492: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed - skipping
  Could not find a version that satisfies the requirement junos-eznc (from versions: )
No matching distribution found for junos-eznc

誰かが私を正しい方向に向けることができますか?


この記事を見つけました: https://github.com/Homebrew/legacy-homebrew/issues/41253

ファイルの名前を変更しようとしましたが、まだうまくいきません:

]$ls
ca-bundle999.crt  ca-bundle999.trust.crt  ca-bundle.jks  exim.pem  localhost.crt  make-dummy-cert  Makefile  renew-dummy-cert
4

1 に答える 1

1

表示される警告メッセージは次のとおりです。

システム時刻がかなりずれています (2014 年 1 月 1 日より前)。これにより、SSL 検証エラーが発生する可能性があります。

そして、実際に SSL 検証エラーが発生します。

証明書の検証に失敗しました

解決策:システムの日付を現在の日付に変更します。


また、Python のアップグレードを提案する 2 つの警告 (重大ではない可能性が高い) も表示されます。

これを解決するには、Python の新しいバージョンにアップグレードします。

解決策: Python をアップグレードします。

于 2017-03-31T00:30:50.070 に答える