게으름을 위한 부지런한 게으름뱅리' 블로그

[Curl] IP주소로 Https curl 호출하기 본문

IT/Linux

[Curl] IP주소로 Https curl 호출하기

LazismLee 2022. 4. 3. 22:07
반응형

♬ curl 호출 조건 

- Domain 없음

-  Server /etc/hosts 파일에 host등록 불가

- https로 호출

 

위와 같은 조건으로 Server to Server curl 호출을 해야 하는 경우 아래와 같이 입력.

curl --header 'Host:{Domain}' --resolve '{Domain}:443:{IP}' https://{Domain}

예시)
curl --header 'Host:test.com' --resolve 'test.com:443:192.168.0.0' https://test.com

 

반응형
Comments