Fix DHCP rule generation

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6322 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-05-10 18:31:24 +00:00
parent 613df34c38
commit d1a4442c76

View File

@ -549,7 +549,7 @@ sub add_common_rules() {
progress_message2 'Adding rules for DHCP';
for $interface ( @$list ) {
for $chain ( @{first_chains $interface}) {
for $chain ( input_chain $interface, output_chain $interface ) {
add_rule $filter_table->{$chain} , '-p udp --dport 67:68 -j ACCEPT';
}