diff options
Diffstat (limited to 'package/firewall/files')
-rw-r--r--[-rwxr-xr-x] | package/firewall/files/firewall.config | 8 | ||||
-rw-r--r-- | package/firewall/files/firewall.user | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/package/firewall/files/firewall.config b/package/firewall/files/firewall.config index 46f7de5d77..464540f990 100755..100644 --- a/package/firewall/files/firewall.config +++ b/package/firewall/files/firewall.config @@ -22,6 +22,10 @@ config forwarding option dest wan option mtu_fix 1 +# include a file with users custom iptables rules +config include + option path /etc/firewall.user + ### EXAMPLE CONFIG SECTIONS # do not allow a specific ip to access wan @@ -53,10 +57,6 @@ config forwarding # option dest_port 80 # option proto tcp -# include a file with users custom iptables rules -#config include -# option path /etc/firewall.user - ### FULL CONFIG SECTIONS #config rule diff --git a/package/firewall/files/firewall.user b/package/firewall/files/firewall.user new file mode 100644 index 0000000000..1ccbd01657 --- /dev/null +++ b/package/firewall/files/firewall.user @@ -0,0 +1,4 @@ +# This file is interpreted as shell script. +# Put your custom iptables rules here, they will +# be executed with each firewall (re-)start. + |