X-Git-Url: https://git.proxmox.com/?p=pve-firewall.git;a=blobdiff_plain;f=pvefw;fp=pvefw;h=029ce9bd18d0ab9382d95c293a8618bf4286a0f0;hp=9ba332dee5bc6ceb13fe206b9acb69f667eb74c3;hb=dec84fcdd39221c18d6cb26349ee8fae211f70bf;hpb=d4d0fd1d54652dceb42542fc576878cf5f9a95b6 diff --git a/pvefw b/pvefw index 9ba332d..029ce9b 100755 --- a/pvefw +++ b/pvefw @@ -107,16 +107,16 @@ __PACKAGE__->register_method ({ my $code = sub { my $chash = PVE::Firewall::iptables_get_chains(); my $cmdlist = "*filter\n"; - my $rule = "INPUT -j proxmoxfw-INPUT"; + my $rule = "INPUT -j PVEFW-INPUT"; if (PVE::Firewall::iptables_rule_exist($rule)) { $cmdlist .= "-D $rule\n"; } - $rule = "OUTPUT -j proxmoxfw-OUTPUT"; + $rule = "OUTPUT -j PVEFW-OUTPUT"; if (PVE::Firewall::iptables_rule_exist($rule)) { $cmdlist .= "-D $rule\n"; } - $rule = "FORWARD -j proxmoxfw-FORWARD"; + $rule = "FORWARD -j PVEFW-FORWARD"; if (PVE::Firewall::iptables_rule_exist($rule)) { $cmdlist .= "-D $rule\n"; }