Home > Mobile >  Having two network policy files
Having two network policy files

Time:05-18

What will happen if I have two network policy files?

  1. In first file I'm not allowing traffic to any IP.
  2. In the second I'm allowing traffic to only one IP.

So, will it allow the traffic to the allowed IP?

Is it the OR between the two files?

CodePudding user response:

yes .. it allows traffic to the 'allowed IP'. instead of comparing with AND or OR analogy, it is more relatable with iptables or firewall rules ex: drop every packet except there is a rule to accept the packet if it is to/from a IP Address.

  • Related