S
S
ssass702018-09-12 17:10:57
Amazon Web Services
ssass70, 2018-09-12 17:10:57

How to turn off the firewall on Amazon?

how to disable firewall on amazon so that apache works, etc.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Eugene, 2018-09-12
@yellowmew

There are three levels of network security on AWS:
Network ACL - Works at the level of the subnet element
to open access from the entire Internet, you need to configure a rule allowing access to the instance from the address 0.0.0.0/0 and a rule allowing access from the instance to the address 0.0.0.0/0. That is , outside and outside . This is how it is set by default. If nothing has changed, then you can simply check.
Security Group - Works at the level of the network interface of your instance
To open access from the entire Internet, you need to create a rule allowing access from the address 0.0.0.0/0 to the instance, and you need to add a rule allowing access from the instance to the address 0.0.0.0/0. It is worth noting here that if you create an instance in the Amazon AWS web console, then the second rule is created automatically. If you create via API, then you need to create it.
instance firewall - runs inside your machine. Configured according to the instructions - but in general, you need to open access from 0.0.0.0/0 or disable it correctly.
I want to note that this is not the recommended way, because you immediately become vulnerable to hacker attacks. But it's up to you to decide, and the right way to search is also your task.

V
Vasily Shakhunov, 2018-09-17
@inf

Add TCP port 80 to the security group of the Apache instance
https://aws.amazon.com/en/premiumsupport/knowledge...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question