如何为所有流量添加 AWS EC2 安全组的入站规则
how to add inbound rules for AWS EC2 security group for all traffic
我正在尝试为所有流量添加 AWS EC2 安全组的入站规则。我正在使用 python boto 模块来执行此操作。
我已经为 tcp|udp|icmp 协议添加了规则。但不能为所有流量添加规则。我应该怎么做?
这对我有用。我能够将 All allow Ingress 添加到安全组
import boto
ec2 = boto.connect_ec2()
sg = ec2.get_all_security_groups(group_ids='sg-12345')[0]
sg.authorize(ip_protocol="-1", from_port=None, to_port=None, cidr_ip="0.0.0.0/0", src_group=None, dry_run=False)
我正在尝试为所有流量添加 AWS EC2 安全组的入站规则。我正在使用 python boto 模块来执行此操作。
我已经为 tcp|udp|icmp 协议添加了规则。但不能为所有流量添加规则。我应该怎么做?
这对我有用。我能够将 All allow Ingress 添加到安全组
import boto
ec2 = boto.connect_ec2()
sg = ec2.get_all_security_groups(group_ids='sg-12345')[0]
sg.authorize(ip_protocol="-1", from_port=None, to_port=None, cidr_ip="0.0.0.0/0", src_group=None, dry_run=False)