diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-03-25 17:55:10 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-03-25 17:55:10 +0000 |
commit | 3347d1558bb754b6bc5d8289c4ab27eca9036f09 (patch) | |
tree | 363d02cc9767f21b6e12cc1bb3c5e673d521f28e | |
parent | ff605c58d446fef3dd1984dd9c64f82189c99add (diff) | |
download | pfsense-3347d1558bb754b6bc5d8289c4ab27eca9036f09.zip pfsense-3347d1558bb754b6bc5d8289c4ab27eca9036f09.tar.gz |
Only pass out quick on bridge
-rw-r--r-- | etc/inc/filter.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 5c88621..9f02614 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -2118,7 +2118,7 @@ function create_firewall_outgoing_rules_to_itself() { /* is bridging turned on? */ for($x=0; $x<10; $x++) { if(does_interface_exist("bridge{$x}") == true) - $rule .="pass quick on bridge{$x} all keep state label \"let out anything from firewall host itself\"\n"; + $rule .="pass out quick on bridge{$x} all keep state label \"let out anything from firewall host itself\"\n"; } /* netgraph pptp outgoing */ |