ubuntu 18.04 não conseguiu se conectar a alguns sites HTTPS

2

Acabei de formatar meu laptop e fiz uma instalação limpa do Ubuntu 18.04. Ao instalar alguns dos meus pacotes de desenvolvimento, encontrei problemas usando ambos os rubygems e python pip. Ele fornece erros relacionados ao SSL. Eu não consigo acessar seus sites também. (Mensagem de erro de redefinição da conexão)

Aqui está o erro de instalar a última versão do PIP

Connected to bootstrap.pypa.io (2a04:4e42::175) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
} [5 bytes data]
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
} [215 bytes data]
* TLSv1.2 (IN), TLS handshake, Server hello (2):
{ [112 bytes data]
* TLSv1.2 (IN), TLS handshake, Certificate (11):
{ [3805 bytes data]
* TLSv1.2 (IN), TLS handshake, Server key exchange (12):
{ [300 bytes data]
* TLSv1.2 (IN), TLS handshake, Server finished (14):
{ [4 bytes data]
* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
} [37 bytes data]
* TLSv1.2 (OUT), TLS change cipher, Client hello (1):
} [1 bytes data]
* TLSv1.2 (OUT), TLS handshake, Finished (20):
} [16 bytes data]
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to bootstrap.pypa.io:443 
* stopped the pause stream!
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to bootstrap.pypa.io:443 

E rubygems:

gem update --system
ERROR:  While executing gem ... (Gem::RemoteFetcher::FetchError)
    Errno::ECONNRESET: Connection reset by peer - SSL_connect (https://api.rubygems.org/specs.4.8.gz)

Editar:

Nem consigo me conectar ao site de curl usando o curl:

➜ curl -v https://curl.haxx.se/mail/archive-2015-08/0015.html
*   Trying 2a04:4e42::561...
* TCP_NODELAY set
* Connected to curl.haxx.se (2a04:4e42::561) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* TLSv1.2 (IN), TLS handshake, Server hello (2):
* TLSv1.2 (IN), TLS handshake, Certificate (11):
* TLSv1.2 (IN), TLS handshake, Server key exchange (12):
* TLSv1.2 (IN), TLS handshake, Server finished (14):
* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
* TLSv1.2 (OUT), TLS change cipher, Client hello (1):
* TLSv1.2 (OUT), TLS handshake, Finished (20):
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to curl.haxx.se:443 
* stopped the pause stream!
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to curl.haxx.se:443 

Eu tentei atualizar os pacotes openssl e ca-certificates, mas o mesmo problema. Versão Openssl: OpenSSL 1.1.0g 2 de novembro de 2017

Alguém tem uma ideia do que está acontecendo? Isso não aconteceu em uma VM alguns dias atrás.

Editar Testado novamente em uma VM conectada à mesma rede e provisionada da mesma forma e funciona !! Algo realmente estranho.

Obrigado.

    
por brpaz 31.05.2018 / 22:57

1 resposta

2

Eu resolvi isso desativando o ipv6 na minha máquina. Não sei realmente porque, mas funcionou.

Para desativar o ipV6 no Ubuntu ou no Linux Mint, siga este tutorial: link

A desativação no gerenciador de rede não foi suficiente.

    
por brpaz 01.06.2018 / 17:37