gpt4 book ai didi

amazon-web-services - 导出规则||允许流量流向所有以 10 开头的 cidr

转载 作者:行者123 更新时间:2023-12-03 07:47:04 25 4
gpt4 key购买 nike

我正在尝试通过 CFT 创建导出规则,以允许所有端口以这种方式到达以 10 开头的 ip 目的地:10.*.*.*/*

  Egress:
Type: AWS::EC2::SecurityGroupEgress
Properties:
GroupId: 'sg-xxx'
IpProtocol: -1
FromPort: -1
ToPort: -1
CidrIp: 10.*.*.*/*
Description: Custom egress with destination starts with 10

运行上述命令会导致此错误:CIDR block 格式错误错误代码:InvalidParameterValue

如何以正确的格式传递该值?

最佳答案

使用 CIDR 为 /8:

  Egress:
Type: AWS::EC2::SecurityGroupEgress
Properties:
GroupId: 'sg-xxx'
IpProtocol: -1
FromPort: -1
ToPort: -1
CidrIp: 10.0.0.0/8
Description: Custom egress with destination starts with 10

关于amazon-web-services - 导出规则||允许流量流向所有以 10 开头的 cidr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74842164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com