Information
Information flow control regulates where information is allowed to travel within a network and between interconnected networks. Blocking or restricting detected harmful or suspicious communications between interconnected networks enforces approved authorizations for controlling the flow of traffic.
The firewall that filters traffic outbound to interconnected networks with different security policies must be configured to permit or block traffic based on organization-defined traffic authorizations.
Solution
Step 1: Configure the ingress ACL similar to the example below.
ASA(config)# access-list INSIDE_INextended permit tcp any any eq https
ASA(config)# access-list INSIDE_INextended permit tcp any any eq http
ASA(config)# access-list INSIDE_INextended permit tcp any any eq ...
ASA(config)# access-list INSIDE_INextended deny ip any any log
Step 2: Apply the ACL inbound on all internal interfaces as shown in the example below.
ASA(config)# access-group INSIDE_IN in interface INSIDE
ASA(config)# end