By default Amazon EC2 only allow port 22 (SSH) on Linux servers and port 3389 (RDP) on Windows Instances. All other ports are closed for security reasons. Depending on your use case, you may need to open ports on the security group to allow connection to applications you run on the EC2 instance.
Log in to the Amazon EC2 console.
In the navigation pane, click instances. This will list all available Amazon EC2 instances. Find the instance ID of the EC2 instance where you need to open the port.
Click on the Instance ID to find more details about the Amazon EC2 server.
On the AWS EC2 Instance details page, click on the “Security” tab. Below you will see “security groups”. A security group is like a firewall, you can allow/disallow incoming and outgoing ports here. Click on the Security Group ID to go to the security group page.
Click on the “Edit inbound rules” button. You can add or remove rules on the “Edit inbound rules” page.
To Ope a port, click on “Add rule” button.
To open a port, you need to add a rule for the port by clicking “Add rule” button.
You will get a new entry, where you need to select your rule.
Type = This is a drop-down select box with the default value “Custom TCP”. You can find many predefined rules for common services like HTTP, HTTPS, MySQL, etc.. You can use Custom TCP or Custom UDP, then enter the port number you need to open.
Port range = You can enter the port number to open on this text box.
Source = This is IP add where you are allowed to connect. To allow all connections, use 0.0.0.0/0
Description – optional = you can enter a note so you know what this port is used for.
Once you added this, click on the “Save rule” button to save the rule. It will configure the security group to allow the port you added.
This screenshot shows the rules needed to Open Port 8080 on the AWS security group for Anyone.
Back to Amazon EC2
Leave a Reply