Cannot access EC2 via HTTP/HTTPS - amazon-web-services

I recently had to completely rebuild my AWS EC2 environment, because I accidentally deleted the SSH key, thinking it was something else. Unfortunately, I cannot access my Tomcat instance which I have confirmed is running on that EC2 instance.
I have added the following security groups for inbound HTTP traffic:
Type. Protocol Port Range Source
HTTP TCP 80 0.0.0.0/0
HTTP TCP 80 ::/0
Custom TCP Rule TCP 8080 0.0.0.0/0
Custom TCP Rule TCP 8080 ::/0
SSH TCP 22 (my IP address)
I have three security groups, and the above rules were added to the group named default:
rds-launch-wizard
launch-wizard-1
**default
I purchased a domain via AWS which I have pointed to this EC2 instance using Route 53. Previously, the DNS was available, but now it is not. However, there is a bigger fundamental problem here because I can't even ping the public IP of my EC2 instance.
I am in fact able to access my EC2 instance via SSH on port 22, which is why I was able to setup Java and Tomcat (both of which I have confirmed are running).
I suspect that some state from my previous configuration is responsible for this problem, but I don't even know where to begin looking for something.
Any help would be appreciated.

To have inbound/outbound internet access to your EC2, you need to look for three things:
Are you able to SSH from outside or inside AWS via an internet gateway (IGW)? If you can SSH from outside then you already have IGW setup properly. Otherwise, make sure your subnet's route table points to IGW by having a route like below:
0.0.0.0/0 igw-efxxxxxxx Active No
Network ACL: Go to your EC2's subnet and find its associated NACL
Create both inbound and outbound rules to ALLOW traffic to the above NACL by adding a rule like below:
100 ALL Traffic ALL ALL 0.0.0.0/0 ALLOW
Security Groups: Your security groups look good. No changes required there. However, based on the comments you made below it appears that, while you did define a security group with the proper inbound rules, for whatever reason you did not associate that security group with your EC2 instance. As a result, the inbound rules you defined were not being applied. To fix this, from the EC2 instance tag access the following:
Actions -> Networking -> Change Security Groups
Then, associate your security group with your instance by checking the appropriate box. After making these changes, your inbound rules should take effect, and you should be able to hit your Tomcat instance running on EC2.

Related

Not able to ssh/http into EC2 instance

I am at my wits end with this, please help.
I am creating EC2 instances in my default public VPC, yet i am not able to ssh or http to my instance or webserver running into the machine. I checked the following
The SG has inbound SSH, HTTP and HTTPS allowed from 0.0.0.0/0 and assigned to my instance
the default VPC, has route tables with 0.0.0.0/0 pointed to IGW
the NACLs are configured to Allow all traffic. i also manually updated to allow only HHTP, HTTPS and SSH
the Key is use has been given the right permission by running chmod 400 filename
Despite all this not able to connect to the EC2 instance, AMI being Amazon Linux 2 AMI
When I try to ssh, i get a connection timeout error after a while, initially, i thought it was my office network but I am also getting the same from my home network with no firewalls in place
To allow an SSH connection, you will need:
An Amazon EC2 instance running Linux launched in a public subnet (defined as having a Route Table that directs 0.0.0.0/0 to an Internet Gateway)
A Security Group permitting Inbound access on port 22 (Outbound configuration is irrelevant)
Network ACLs left at their default settings of Allow All in both directions
A Public IP address associated with the instance
From your descriptions, I would say that the problem is probably with the Outbound NACLs. Return traffic from an SSH session goes back to the source port on the initiating server, which is not port 22. In general, only change the NACLs if you have a specific reason, such as creating a DMZ. I recommend you reset the NACL rules to Allow All traffic in both directions.

2 ec2 instance interacting with each other

I am new to aws and ec2 interaction with traffic flow.
I have one ec2 instance which I am using as a web server and other as an application server.
how can my two ec2 interact with each other maintaining all the security required?
Both the ec2 machines are on the ubuntu image.
I tried adding All ICMP - IPv4 with source 0.0.0.0/0. I feel it's not the correct way I want only my other instance to access it.
I also tried adding source as other instance security group but didn't work. I was not able to ping from one machine to other
The recommended security configuration would be:
Create a Security Group for the web server (Web-SG) that permits Inbound traffic for HTTP and HTTPS (ports 80, 443). Leave the Outbound configuration as the default "Allow All".
Create a Security Group for the app server (App-SG) that permits Inbound traffic from Web-SG on the desired ports. Leave the Outbound configuration as the default "Allow All".
That is, App-SG should specifically refer to Web-SG in the Inbound rules. This will permit traffic from Web-SG to enter App-SG.
You might want to add additional access so that you can manage the instances (eg SSH), or you can use AWS Systems Manager Session Manager to connect.
Do not use Ping to test access since that requires additional settings and only proves that Ping works. Instead, test the actual access on the desired ports (eg port 80).

How do I make my security group accessible only to my IP address?

I have an EC2 instance for running RServer. I've set up my security group, but AWS sent me a warning saying that my EC2 instance is accessible to anyone in the world.
This is my setup.
I have a VPC with IPv4 CIDR 10.0.0.0/16.
I have two subnets, each in a different availability zone. They are both associated with the VPC.
They both have these same rules.
They are both connected with the same internet gateway, which is also attached to the VPC.
For route tables, they both have 10.0.0.0/16 with target local.
They also have a connection with another route table. Each of them connects with a different route table.
The first connects with route table A, which has two routes. It has 10.0.0.0/16 local active Propagated: No and 0.0.0.0/0 active Propagated: No. The second route is connected with the same internet gateway as the VPC.
The second subnet connects with route table B, which has the same routes as route table A.
I also have a security group. It is associated with the VPC. It has three inbound rules. The first one is type: SSH, Protocol: TCP, Port Range: 22 and source as my personal ip address followed by /32.
The second one is for RStudio Server and is type: Custom TCP Rule, Protocol: TCP, Port Range: 0.0.0.0/0 and the third one is also for RStudio Server and is type: Custom TCP Rule, Protocol: TCP, Port Range: ::/0.
I also have a network ACL which has default settings. It allows all inbound and outbound traffic.
I think you have typo for the RStudio IP range, which is 0.0.0.0/0, why don't restrict to limited IPs rather than global accessible? Even if it's TCP, you still need to limit the IP range
The pictures you have provided are for Network Access Control Lists (NACLs), not Security Groups. In general, you should never change the NACL configuration unless you really understand networking.
Rather, you should configure your Security Group to only permit inbound access from your IP address on the desired ports.

EC2 - Make Windows instance accessible from anywhere (XAMPP)

I've launched an EC2 instance on AWS, no after setting up XAMPP and uploading all my archives it's now time to make the site public.
Thing is that I've already tried to put all the firewall on windows allowing inbound and outbound connections to "allow" and then also on my AWS Security groups this:
Inbound:
HTTP TCP 80 0.0.0.0/0
HTTP TCP 80 ::/0
Custom TCP Rule TCP 0 - 8080 0.0.0.0/0
Custom TCP Rule TCP 0 - 8080 ::/0
Outbound:
All traffic All All 0.0.0.0/0
As i mentioned before, i allowed all inbound and outbound connections on the windows firewall of the instance.
What am i doing wrong and how can i fix this issue to make the server accessible from the IP that amazon assigned my instance?
Thanks.
Couple of things to check:
(Obvious One) Make sure the application is listening on port 80 / 8080 (You mentioned both ports in SGs. Not sure on which port your application is running)
If you are planning to access your application over the internet, make sure you have public IP assigned to your instance.
Check your NACLs if both inbound and outbound rules are added. If you are accessing the app from a specific VPC / OnPrem network, add it to NACLs. If you dont want to restrict your app and want to access over internet, make sure you have 0.0.0.0/0 is added in NACL inbound and outbound
If accessing the app over internet, you need to have Internet gateway assigned to your VPC.
Hope this helps troubleshooting your issue. Provide more details like, you instance is in public subnet or private subnet. Weather you are accessing app from within the VPC or over internet etc.

Amazon AWS EC2, Allow inbound http Request

I have deployed a nodejs application in AWS EC2 instance. It has API gateway with '/api/companies' endpoint. After starting my server I am able to cURL from the instance terminal and it returns the result correctly. But I am not able to make the request from my browser to the EC2 instance. I am not sure exactly how to modify the inbound rules to make this work
You might want to check out the Security Group Rules documentation, but the gist is:
Create a new Security Group in your VPC for your EC2 instance
In the Inbound rules, create a new rule
Set the Source to your IP address. (Optional, if you want to allow access from any IP address, enter 0.0.0.0/0 in the Source)
Set the Protocol to tcp, and set the Port to 80 or 443 depending on what your application uses
Edit your existing security group or add a new security group
Select the VPC the instance is running in. The attached image shows No VPC, but you have to select your VPC
For Source, you can choose My IP if you want to allow inbound traffic from your IP only or from Anywhere in the world