我正在尝试为所有流量添加AWS EC2安全组的入站规则。我正在使用python boto模块这样做。
我已经为tcp | udp | icmp协议添加了规则。但是无法为所有流量添加规则。我应该怎么做?
答案 0 :(得分:3)
这对我有用。我能够将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)