DNS

Exceptions

HTTP

Exceptions

$ curl -vik --header "Host: wikileaks.org" 85.117.236.90
*   Trying 85.117.236.90:80...
* TCP_NODELAY set
* Connected to 85.117.236.90 (85.117.236.90) port 80 (#0)
> GET / HTTP/1.1
> Host: wikileaks.org
> User-Agent: curl/7.68.0
> Accept: */*
>
* Recv failure: Connection reset by peer
* Closing connection 0
curl: (56) Recv failure: Connection reset by peer

HTTPS

Exceptions

$ curl -vik --resolve wikileaks.org:443:85.117.236.90 <https://wikileaks.org>
* Added wikileaks.org:443:85.117.236.90 to DNS cache
* Hostname wikileaks.org was found in DNS cache
*   Trying 85.117.236.90:443...
* TCP_NODELAY set
* Connected to wikileaks.org (85.117.236.90) 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.3 (OUT), TLS handshake, Client hello (1):
* OpenSSL SSL_connect: Connection reset by peer in connection to wikileaks.org:443
* Closing connection 0
curl: (35) OpenSSL SSL_connect: Connection reset by peer in connection to wikileaks.org:443
$ curl -vik <https://privateinternetaccess.com> -m 2
*   Trying 92.123.16.68:443...
* TCP_NODELAY set
* Connected to privateinternetaccess.com (92.123.16.68) 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.3 (OUT), TLS handshake, Client hello (1):
* Operation timed out after 2001 milliseconds with 0 out of 0 bytes received
* Closing connection 0
curl: (28) Operation timed out after 2001 milliseconds with 0 out of 0 bytes received