--- title: "getPublicIpTargetServerInstanceList" slug: "cli-vserver-publicip-getpubliciptargetserverinstancelist" updated: 2026-06-25T09:10:27Z published: 2026-06-25T09:10:27Z canonical: "cli-fin.ncloud-docs.com/cli-vserver-publicip-getpubliciptargetserverinstancelist" --- > ## Documentation Index > Fetch the complete documentation index at: https://cli-fin.ncloud-docs.com/llms.txt > Use this file to discover all available pages before exploring further. # getPublicIpTargetServerInstanceList 공인 IP를 할당할 수 있는 서버 인스턴스 목록을 조회합니다. ## 구문 `getPublicIpTargetServerInstanceList` 구문은 다음과 같습니다. ```shell ./ncloud vserver getPublicIpTargetServerInstanceList \ [--regionCode ] \ [--output ] ``` ## 옵션 `getPublicIpTargetServerInstanceList` 실행 시 지정할 수 있는 옵션을 설명합니다. ### 공통 옵션 `vserver` 명령에서 공통으로 사용하는 옵션에 대한 정보는 [Server 옵션](/docs/cli-vserver#옵션)을 참조해 주십시오. ## 예시 공인 IP 할당 대상 서버 목록 조회 요청이 성공하면 각 서버의 식별 및 구성 정보가 반환됩니다. ### 명령 명령 예시는 다음과 같습니다. ```shell ./ncloud vserver getPublicIpTargetServerInstanceList \ --regionCode FKR \ --output json ``` ### 출력 출력 예시는 다음과 같습니다. ```json { "getPublicIpTargetServerInstanceListResponse": { "totalRows": 1, "serverInstanceList": [ { "serverInstanceNo": "34567892", "serverName": "public-test-server", "serverDescription": "", "cpuCount": 2, "memorySize": 4294967296, "platformType": { "code": "UBD64", "codeName": "Ubuntu Desktop 64 Bit" }, "loginKeyName": "fin-auth", "publicIpInstanceNo": "", "publicIp": "", "serverInstanceStatus": { "code": "RUN", "codeName": "서버 RUN 상태" }, "serverInstanceOperation": { "code": "NULL", "codeName": "서버 NULL OP" }, "serverInstanceStatusName": "running", "createDate": "2026-05-18T11:11:26+0900", "uptime": "2026-05-20T10:58:53+0900", "serverImageProductCode": "SW.VSVR.OS.LNX64.UBNTU.SVR2004.B050", "serverProductCode": "SVR.VSVR.STAND.C002.M004.NET.SSD.B050.G001", "isProtectServerTermination": false, "zoneCode": "FKR-1", "regionCode": "FKR", "vpcNo": "12345678", "subnetNo": "23456790", "networkInterfaceNoList": [ "56789017" ], "initScriptNo": "", "serverInstanceType": { "code": "STAND", "codeName": "Standard" }, "baseBlockStorageDiskType": { "code": "NET", "codeName": "네트웍 스토리지" }, "baseBlockStorageDiskDetailType": { "code": "SSD", "codeName": "SSD" }, "placementGroupNo": "", "placementGroupName": "", "memberServerImageInstanceNo": "", "hypervisorType": { "code": "XEN", "codeName": "XEN" }, "serverImageNo": "16920995", "serverSpecCode": "sd2-g1-s50", "eventList": [], "fabricClusterPoolNo": "", "fabricClusterPoolName": "", "fabricClusterMode": "", "fabricClusterNo": "", "fabricClusterName": "", "isPreInstallGpuDriver": false } ], "requestId": "7d6eb941-77dd-4749-8f67-a01355deddb1", "returnCode": "0", "returnMessage": "success" } } ```