summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/Vyatta/Misc.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Vyatta/Misc.pm b/lib/Vyatta/Misc.pm
index 44c0459..9b3e5ee 100755
--- a/lib/Vyatta/Misc.pm
+++ b/lib/Vyatta/Misc.pm
@@ -103,7 +103,8 @@ sub getInterfaces {
my @interfaces = grep { ( !/^\./ ) &&
( $_ ne 'bonding_masters' ) &&
! ( $_ =~ '^mon.wlan\d$') &&
- ! ( $_ =~ '^wmaster\d+$')
+ ! ( $_ =~ '^wmaster\d+$') &&
+ ! ( $_ =~ '^ifb.')
} readdir $sys_class;
closedir $sys_class;
return @interfaces;