Skip to content

Instantly share code, notes, and snippets.

@moeltaher
Created September 30, 2019 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moeltaher/9a794286d5e6fc9bb0fc1cf3e6736bd5 to your computer and use it in GitHub Desktop.
Save moeltaher/9a794286d5e6fc9bb0fc1cf3e6736bd5 to your computer and use it in GitHub Desktop.
Curl via Vodafone Egypt
ThinkPad-T470:~$ curl -v https://www.skype.com
* Rebuilt URL to: https://www.skype.com/
* Trying 52.113.194.133...
* TCP_NODELAY set
* Connected to www.skype.com (52.113.194.133) 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: SSL_ERROR_SYSCALL in connection to www.skype.com:443
* stopped the pause stream!
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.skype.com:443
ThinkPad-T470:~$ curl -v --connect-to ::www.kernel.org: https://www.skype.com
* Rebuilt URL to: https://www.skype.com/
* Connecting to hostname: www.kernel.org
* Trying 136.144.49.103...
* TCP_NODELAY set
* Connected to www.kernel.org (136.144.49.103) 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: SSL_ERROR_SYSCALL in connection to www.skype.com:443
* stopped the pause stream!
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.skype.com:443
ThinkPad-T470:~$ curl -v --resolve 'skype.com:443:40.115.34.155' --connect-to ::kernel.org: https://www.skype.com
* Added skype.com:443:40.115.34.155 to DNS cache
* Rebuilt URL to: https://www.skype.com/
* Connecting to hostname: kernel.org
* Trying 198.145.29.83...
* TCP_NODELAY set
* Connected to kernel.org (198.145.29.83) 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: SSL_ERROR_SYSCALL in connection to www.skype.com:443
* stopped the pause stream!
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.skype.com:443
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment