2 Risposte
- Più recenti
- Maggior numero di voti
- Maggior numero di commenti
0
Thank you for helping me figure out the problem. The solution was pretty easy, there was no server running in the background that would be listening to port 443 (or any other). After starting a simple node js server I was able to get a response from the server by his ip.
con risposta un anno fa
0
I would check four things:
- Does the Security Group associated with the instance allow ICMP Protocol from your IP address or the internet generally?
- Is the EC2 in a public subnet? (meaning the subnet has a routing table with a path to the Internet Gateway), eg. 0.0.0.0/0 igw-121231312
- If using an Elastic IP, is it associated to the EC2 instance you are trying to ping?
- Check the Network Access Control List (NACL) to see if there are any Deny rules attached to the subnet
This assumes your VPC has an Internet Gateway attached (which would be the case if you used the default VPC).
con risposta un anno fa
Contenuto pertinente
- AWS UFFICIALEAggiornata 5 mesi fa
- AWS UFFICIALEAggiornata 2 anni fa
Have you added an inbound rule in your Security Group for SSH or RDP?
I added the shh and rdp in inbound and outbound, but still cannot reach server by address https://3.20.108.133/
Oh OK, by "connect" you meant via https - usually people are talking about ssh or rdp. Glad you got it sorted anyway.