RevokeSecurityGroupEgress 搭配 CLI 使用 - Amazon Elastic Compute Cloud

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

RevokeSecurityGroupEgress 搭配 CLI 使用

下列程式碼範例示範如何使用 RevokeSecurityGroupEgress

CLI
AWS CLI

範例 1:移除允許傳出流量至特定地址範圍的規則

下列revoke-security-group-egress範例命令會移除規則,授予 TCP 連接埠 80 上指定地址範圍的存取權。

aws ec2 revoke-security-group-egress \ --group-id sg-026c12253ce15eff7 \ --ip-permissions [{IpProtocol=tcp,FromPort=80,ToPort=80,IpRanges=[{CidrIp=10.0.0.0/16}]

此命令不會產生輸出。

如需詳細資訊,請參閱 Amazon EC2 使用者指南中的安全群組

範例 2:移除允許傳出流量至特定安全群組的規則

下列revoke-security-group-egress範例命令會移除規則,將存取權授予 TCP 連接埠 80 上指定的安全群組。

aws ec2 revoke-security-group-egress \ --group-id sg-026c12253ce15eff7 \ --ip-permissions '[{"IpProtocol": "tcp", "FromPort": 443, "ToPort": 443,"UserIdGroupPairs": [{"GroupId": "sg-06df23a01ff2df86d"}]}]'

此命令不會產生輸出。

如需詳細資訊,請參閱 Amazon EC2 使用者指南中的安全群組

PowerShell
for PowerShell 工具

範例 1:此範例會移除 EC2-VPC 指定安全群組的規則。這會撤銷對 TCP 連接埠 80 上指定 IP 地址範圍的存取權。此範例使用的語法需要 PowerShell 第 3 版或更高版本。

$ip = @{ IpProtocol="tcp"; FromPort="80"; ToPort="80"; IpRanges="203.0.113.0/24" } Revoke-EC2SecurityGroupEgress -GroupId sg-12345678 -IpPermission $ip

範例 2:使用 PowerShell 第 2 版,您必須使用 New-Object 來建立 IpPermission 物件。

$ip = New-Object Amazon.EC2.Model.IpPermission $ip.IpProtocol = "tcp" $ip.FromPort = 80 $ip.ToPort = 80 $ip.IpRanges.Add("203.0.113.0/24") Revoke-EC2SecurityGroupEgress -GroupId sg-12345678 -IpPermission $ip

範例 3:此範例會撤銷對 TCP 連接埠 80 上指定來源安全群組的存取權。

$ug = New-Object Amazon.EC2.Model.UserIdGroupPair $ug.GroupId = "sg-1a2b3c4d" $ug.UserId = "123456789012" Revoke-EC2SecurityGroupEgress -GroupId sg-12345678 -IpPermission @( @{ IpProtocol="tcp"; FromPort="80"; ToPort="80"; UserIdGroupPairs=$ug } )

如需 AWS SDK 開發人員指南和程式碼範例的完整清單,請參閱 使用 建立 Amazon EC2 資源 AWS SDK。本主題也包含有關入門的資訊,以及先前 SDK 版本的詳細資訊。