Skip to content

Commit 6783d9a

Browse files
author
Matthew Fisher
committed
fix(contrib/ec2): fix ephemeral port range
The default ephemeral port range is set to 49152 according to http://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html. Some apps that start on 49153 will be blocked by the firewall otherwise.
1 parent 4979c2f commit 6783d9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

contrib/ec2/deis.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"IngressEphemeral": {
145145
"Type": "AWS::EC2::SecurityGroupIngress",
146146
"Properties": {
147-
"GroupName": {"Ref": "DeisSecurityGroup"}, "IpProtocol": "tcp", "FromPort": "49156", "ToPort": "65535", "SourceSecurityGroupId": {
147+
"GroupName": {"Ref": "DeisSecurityGroup"}, "IpProtocol": "tcp", "FromPort": "49152", "ToPort": "65535", "SourceSecurityGroupId": {
148148
"Fn::GetAtt" : [ "DeisSecurityGroup", "GroupId" ]
149149
}
150150
}

0 commit comments

Comments
 (0)