Question 381:
You have a web server hosted on an EC2 Instance. The subnet hosting the EC2 Instance has the following NACL attached INBOUND RULES: Rule # Type Protocol Port Range Source Allow / Deny 100 HTTP(80) TCP(6) 80 0.0.0.0/0 ALLOW 101 HTTPS(443) TCP(6) 443 0.0.0.0/0 ALLOW OUTBOUND RULES: Rule # TYPE Protocol Port Range Destination Allow / Deny 200 HTTP(80) TCP(6) 80 0.0.0.0/0 ALLOW 201 HTTPS(443) TCP(6) 443 0.0.0.0/0 DENY 1000 ALL Traffic ALL ALL 0.0.0.0/0 ALLOW * ALL Traffic ALL ALL 0.0.0.0/0 DENY What happens when a request comes from the internet to the webserver on port 80?
Answer options:
A.The request will be allowed because of Rule no 100 which matches the request B.The request will be allowed because of Rule no 1000 which matches the request C.The request will be denied because of Rule no 200 D.The request will be denied because of Rule no *