diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-05-11 16:54:02 -0700 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-05-11 16:54:02 -0700 |
commit | 7820d87bcf833391f4b2dbbc90bee57dfa91f545 (patch) | |
tree | 7980e3f82077fae990d804484e7000b10286440b /scripts | |
parent | db4bcb134272a17b7583d1877286c0e412091c6b (diff) | |
download | vyatta-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-x | scripts/firewall/vyatta-firewall.pl | 1 |
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', |