Created
December 17, 2014 16:05
-
-
Save mpolden/d14bb25e7f2120c68a4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -v6 https://www.dustinhome.no | |
* Rebuilt URL to: https://www.dustinhome.no/ | |
* Hostname was NOT found in DNS cache | |
* Trying 2001:67c:112c:8000::15... | |
* Connected to www.dustinhome.no (2001:67c:112c:8000::15) port 443 (#0) | |
* successfully set certificate verify locations: | |
* CAfile: none | |
CApath: /etc/ssl/certs | |
* SSLv3, TLS handshake, Client hello (1): | |
* Unknown SSL protocol error in connection to www.dustinhome.no:443 | |
* Closing connection 0 | |
curl: (35) Unknown SSL protocol error in connection to www.dustinhome.no:443 | |
$ curl -v6 http://www.dustinhome.no | |
* Rebuilt URL to: http://www.dustinhome.no/ | |
* Hostname was NOT found in DNS cache | |
* Trying 2001:67c:112c:8000::15... | |
* Connected to www.dustinhome.no (2001:67c:112c:8000::15) port 80 (#0) | |
> GET / HTTP/1.1 | |
> User-Agent: curl/7.35.0 | |
> Host: www.dustinhome.no | |
> Accept: */* | |
> | |
< HTTP/1.1 301 Moved Permanently | |
< Location: https://www.dustinhome.no/ | |
< Date: Wed, 17 Dec 2014 16:04:44 GMT | |
< Content-Length: 143 | |
< | |
<html><head><title>Object moved</title></head><body> | |
<h2>Object moved to <a href="https://www.dustinhome.no/">here</a>.</h2> | |
</body></html> | |
* Connection #0 to host www.dustinhome.no left intact |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment