CLI와 CreateCustomerGateway 함께 사용 - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

CLI와 CreateCustomerGateway 함께 사용

다음 코드 예제는 CreateCustomerGateway의 사용 방법을 보여 줍니다.

CLI
AWS CLI

고객 게이트웨이를 생성하려면

이 예제에서는 외부 인터페이스에 대해 지정된 IP 주소로 고객 게이트웨이를 생성합니다.

명령:

aws ec2 create-customer-gateway --type ipsec.1 --public-ip 12.1.2.3 --bgp-asn 65534

출력:

{ "CustomerGateway": { "CustomerGatewayId": "cgw-0e11f167", "IpAddress": "12.1.2.3", "State": "available", "Type": "ipsec.1", "BgpAsn": "65534" } }
PowerShell
for PowerShell 도구

예제 1:이 예제는 지정된 고객 게이트웨이를 생성합니다.

New-EC2CustomerGateway -Type ipsec.1 -PublicIp 203.0.113.12 -BgpAsn 65534

출력:

BgpAsn : 65534 CustomerGatewayId : cgw-1a2b3c4d IpAddress : 203.0.113.12 State : available Tags : {} Type : ipsec.1
  • API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조CreateCustomerGateway를 참조하세요.