simply put, i want to use these rules:
iptables -I FORWARD -i br0.105 -d 192.168.0.0/16 -j DROP
iptables -I FORWARD -s 192.168.0.0/16 -i br0.105 -j DROP
but with the exception of the 192.168.99.0/24 subnet.
Is there a way of specifying this in the lines above? I prefer ta not add an exception-rule with -j accept
for the .99
-subnet, as there are other rules that refer to that particular subnet.
Use a new chain. There are multiple ways to do this, my preference would be this:
Notice the first rule does a RETURN if the source is the /24 you want to exclude.
Another method is this, but is less flexible in that you can't add another range to exclude in the future:
What are other rules? It apply for .99 subnet or It apply for 192.168.0.0/16?
If It just apply for .99 subnet, you only have to move It up, above these two rules.
Create a new chain:
Direct the exception network to the new chain:
Apply other rules to traffic in that chain: