diff options
author | Jérôme Schneider <jschneider@entrouvert.com> | 2011-05-09 21:03:08 (GMT) |
---|---|---|
committer | Jérôme Schneider <jschneider@entrouvert.com> | 2011-05-09 21:03:08 (GMT) |
commit | b4601423a0a44fc27130f87133c05cf001344094 (patch) | |
tree | 5c31363e8964b4101ea8655d91eb474a4c4d79d3 | |
parent | 60424d55135d7d896481606bf8638cef079fc1bb (diff) | |
download | eofirewall-b4601423a0a44fc27130f87133c05cf001344094.zip eofirewall-b4601423a0a44fc27130f87133c05cf001344094.tar.gz eofirewall-b4601423a0a44fc27130f87133c05cf001344094.tar.bz2 |
Fix configuration file: remove empty value
-rw-r--r-- | firewall.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firewall.conf b/firewall.conf index 8f08a85..2325402 100644 --- a/firewall.conf +++ b/firewall.conf @@ -26,12 +26,12 @@ OPEN_PORTS=("0.0.0.0/0 tcp ssh") ## Port forwarding # "source port destination:port protocol" "source port destination:port protocol" ... # example : TRAFFICS=("0.0.0.0/0 80 192.168.0.42:80 tcp" "42.42.42.42 4242 192.168.0.43:22 tcp") -TRAFFICS=("") +TRAFFICS=() ## Port redirection # "interface protocol sourceport destport" ... # example : REDIRECTIONS=("eth42 tcp 32 25" "$LAN_INT tcp 25 4242") -REDIRECTIONS=("") +REDIRECTIONS=() # Hook point to write your own iptables rules ipt_hook() |