summaryrefslogtreecommitdiff
path: root/lib/Vyatta/IpTables
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@io.vyatta.com>2009-02-12 18:47:13 -0800
committerStig Thormodsrud <stig@io.vyatta.com>2009-02-12 18:47:13 -0800
commit46bd9ea2b372a4668cec4f098af3c606cd3302ac (patch)
tree2290a962f468f506ef0a4cfb2a4d3a729736f06b /lib/Vyatta/IpTables
parent323917b9b20833bd28a6343bab3d38280ee12048 (diff)
downloadvyatta-cfg-firewall-46bd9ea2b372a4668cec4f098af3c606cd3302ac.tar.gz
vyatta-cfg-firewall-46bd9ea2b372a4668cec4f098af3c606cd3302ac.zip
Add check for combining network-group and address-group.
Diffstat (limited to 'lib/Vyatta/IpTables')
-rwxr-xr-xlib/Vyatta/IpTables/AddressFilter.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Vyatta/IpTables/AddressFilter.pm b/lib/Vyatta/IpTables/AddressFilter.pm
index a0abb3e..01c2795 100755
--- a/lib/Vyatta/IpTables/AddressFilter.pm
+++ b/lib/Vyatta/IpTables/AddressFilter.pm
@@ -229,9 +229,11 @@ sub rule {
# Handle groups last so we can check $group_ok
if ($self->{_ip_version} eq "ipv4") {
# so far ipset only supports IPv4
+ my %group_used = ('address' => 0, 'network' => 0);
foreach my $group_type ('address', 'network', 'port') {
my $var_name = '_' . $group_type . '_group';
if (defined($self->{$var_name})) {
+ $group_used{$group_type} = 1;
my $name = $self->{$var_name};
if (! $group_ok{$group_type}) {
return (undef, "Can't mix $self->{_srcdst} $group_type group " .
@@ -242,6 +244,10 @@ sub rule {
return ($err_str, ) if ! defined $set_rule;
$rule .= $set_rule;
}
+ }
+ if ($group_used{address} and $group_used{network}) {
+ return (undef,
+ "Can't combine network and address group for $self->{_srcdst}\n");
}
}