콘텐츠로 이동

curl

두 개의 명령이 있으며, 이 둘의 차이가 곧 전체 가치입니다.

호스트 네트워크 네임스페이스에서 실행됩니다 — 데이터 플레인이 개입하기 전, 노드 자체의 연결성입니다.

Terminal window
{"command":["curl-host","-v","cloud.f5.com"]}
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying <public-ip>:80...
* Connected to cloud.f5.com (<public-ip>) port 80 (#0)
> GET / HTTP/1.1
> Host: cloud.f5.com
> User-Agent: curl/7.76.1
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 301 Moved Permanently
< location: https://cloud.f5.com/
< server: volt-adc
< date: Mon, 03 Aug 2026 16:30:24 GMT
< connection: close
< content-length: 0
<
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
* Closing connection 0

호스트가 아닌 Vega(컨트롤 플레인) 컨텍스트에서 실행됩니다. 관찰 가능한 차이이자 여기서 확인된 유일한 차이는 상속되는 환경입니다. curl-vega는 사설 범위, int.ves.io, int.volterra.us 및 사이트 자체의 .tenant.local 도메인을 포함하는 NO_PROXY 목록을 보고하지만, curl-host는 아무것도 보고하지 않습니다. 이것이 DNS 경로에 대해 무엇을 의미하는지는 측정되지 않았습니다.

Terminal window
{"command":["curl-vega","-v","cloud.f5.com"]}
* Uses proxy env variable NO_PROXY == '10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,100.127.0.0/18,100.127.192.0/18,169.254.0.0/16,int.ves.io,int.volterra.us,mcn-ce-ha-eastus01.<tenant>.tenant.local'
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying <public-ip>:80...
* Connected to cloud.f5.com (<public-ip>) port 80 (#0)
> GET / HTTP/1.1
> Host: cloud.f5.com
> User-Agent: curl/7.76.1
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 301 Moved Permanently
< location: https://cloud.f5.com/
< server: volt-adc
< date: Mon, 03 Aug 2026 16:30:26 GMT
< connection: close
< content-length: 0
<
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
* Closing connection 0

두 명령 모두 일반적인 curl 인자를 별도의 배열 요소로 받습니다. 연결 및 TLS 핸드셰이크 줄이 보통 실패가 드러나는 지점이므로 -v는 유지할 만합니다.