summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMohit Mehta <mohit.mehta@vyatta.com>2009-05-11 16:54:02 -0700
committerMohit Mehta <mohit.mehta@vyatta.com>2009-05-11 16:54:02 -0700
commit7820d87bcf833391f4b2dbbc90bee57dfa91f545 (patch)
tree7980e3f82077fae990d804484e7000b10286440b /scripts
parentdb4bcb134272a17b7583d1877286c0e412091c6b (diff)
downloadvyatta-cfg-firewall-7820d87bcf833391f4b2dbbc90bee57dfa91f545.tar.gz
vyatta-cfg-firewall-7820d87bcf833391f4b2dbbc90bee57dfa91f545.zip
Add 'reject' as a configurable value for default-policy
under name and ipv6-name rulesets
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/firewall/vyatta-firewall.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/firewall/vyatta-firewall.pl b/scripts/firewall/vyatta-firewall.pl
index 84319fa..08da99d 100755
--- a/scripts/firewall/vyatta-firewall.pl
+++ b/scripts/firewall/vyatta-firewall.pl
@@ -67,6 +67,7 @@ my %outhook_hash = ( 'filter' => 'FORWARD',
# mapping from vyatta 'default-policy' to iptables jump target
my %policy_hash = ( 'drop' => 'DROP',
+ 'reject' => 'REJECT',
'accept' => 'RETURN' );
my %other_tree = ( 'name' => 'modify',