Revision 55833877
Added by Jim Pingle almost 14 years ago
usr/local/www/firewall_rules.php | ||
---|---|---|
851 | 851 |
<span class="red"><?=gettext("Hint:");?></span> |
852 | 852 |
</strong><br> |
853 | 853 |
<ul> |
854 |
<li><?=gettext("Rules are evaluated on a first-match basis (i.e. " . |
|
855 |
"the action of the first rule to match a packet will be executed). " . |
|
856 |
"This means that if you use block rules, you'll have to pay attention " . |
|
857 |
"to the rule order. Everything that isn't explicitly passed is blocked " . |
|
858 |
"by default. ");?> |
|
859 |
</li> |
|
854 |
<? if ("FloatingRules" != $if): ?> |
|
855 |
<li><?=gettext("Rules are evaluated on a first-match basis (i.e. " . |
|
856 |
"the action of the first rule to match a packet will be executed). " . |
|
857 |
"This means that if you use block rules, you'll have to pay attention " . |
|
858 |
"to the rule order. Everything that isn't explicitly passed is blocked " . |
|
859 |
"by default. ");?> |
|
860 |
</li> |
|
861 |
<? else: ?> |
|
862 |
<li><?=gettext("Floating rules are evaluated on a first-match basis (i.e. " . |
|
863 |
"the action of the first rule to match a packet will be executed) only " . |
|
864 |
"if the 'quick' option is checked on a rule. Otherwise they will only apply if no " . |
|
865 |
"other rules match. Pay close attention to the rule order and options " . |
|
866 |
"chosen. If no rule here matches, the per-interface or default rules are used. ");?> |
|
867 |
</li> |
|
868 |
<? endif; ?> |
|
860 | 869 |
</ul> |
861 | 870 |
</td> |
862 | 871 |
</tr> |
Also available in: Unified diff
Fix bottom note when viewing Floating rules to better reflect how they operate.