From 7515cb0ab02a0fc10ca5112a5b2fd6e671ef3cb4 Mon Sep 17 00:00:00 2001 From: Eric Miller <> Date: Wed, 20 Jun 2007 03:12:20 +0000 Subject: [PATCH] Remove propvirtual from i_ignore() so we capture VLAN interfaces and their associated MACs. --- Info/Layer2.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Info/Layer2.pm b/Info/Layer2.pm index 06f7093c..66a8d146 100644 --- a/Info/Layer2.pm +++ b/Info/Layer2.pm @@ -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;