동시에 Linux(Mac 이외) 시스템에서 컬 명령을 사용하여 액세스합니다.https://ssl-failure.thousandeyes.net오류가 발생합니다. 다만, 크롬 등의 웹브라우저에서 이 사이트를 열면 오류가 발생하지 않는 것 같습니다. 이건 어때?
답변1
남성의 경우:
-k/--insecure (SSL) This option explicitly allows curl to perform "insecure" SSL connections and transfers. All SSL connections are attempted to be made secure by using the CA certificate bundle installed by default. This makes all connections considered "insecure" fail unless -k/--insecure is used.
-k
컬이 "안전하지 않은" SSL 연결 및 전송을 수행하도록 허용하는 옵션을 사용하여 보안(SSL) 사이트에 액세스하려고 합니다 .
curl -k 'https://ssl-failure.thousandeyes.net/'
<html>
<head>
<title>Welcome to ssl-failure.thousandeyes.net</title>
</head>
<body>
<p>Welcome to ssl-failure.thousandeyes.net. Congratulations, you're reading the secure page</p>
</body>
</html>