Remove propvirtual from i_ignore() so we capture VLAN interfaces and their associated MACs.

This commit is contained in:
Eric Miller
2007-06-20 03:12:20 +00:00
parent fc4d9cac24
commit 7515cb0ab0

View File

@@ -135,7 +135,7 @@ sub i_ignore {
foreach my $if (keys %$i_type){
my $type = $i_type->{$if};
$i_ignore{$if}++
if $type =~ /(loopback|propvirtual|other|cpu)/i;
if $type =~ /(loopback|other|cpu)/i;
}
return \%i_ignore;