From 726f9f337832a32ec4642a963476e5ea12077470 Mon Sep 17 00:00:00 2001 From: Adam Amstrong Date: Thu, 29 Mar 2012 12:48:25 +0000 Subject: [PATCH] fix capitalization git-svn-id: http://www.observium.org/svn/observer/trunk@2935 61d68cd4-352d-0410-923a-c4978735b2b8 --- includes/defaults.inc.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/includes/defaults.inc.php b/includes/defaults.inc.php index a2fb5a663..6f4b40d40 100644 --- a/includes/defaults.inc.php +++ b/includes/defaults.inc.php @@ -237,11 +237,13 @@ $config['bad_if'][] = "sslvpn"; $config['bad_if'][] = "pppoe-"; #$config['bad_if'][] = "control plane"; ## Example for cisco control plane -$config['bad_iftype'][] = "voiceencap"; -$config['bad_iftype'][] = "voicefxo"; -$config['bad_iftype'][] = "voicefxs"; -$config['bad_iftype'][] = "voiceoveratm"; -$config['bad_iftype'][] = "voiceoverframerelay"; +### Ignore ports based on ifType. Case-sensitive. + +$config['bad_iftype'][] = "voiceEncap"; +$config['bad_iftype'][] = "voiceFXA"; +$config['bad_iftype'][] = "voiceFXS"; +$config['bad_iftype'][] = "voiceOverAtm"; +$config['bad_iftype'][] = "voiceOverFrameRelay"; $config['bad_if_regexp'][] = "/serial[0-9]:/"; $config['bad_if_regexp'][] = "/^ng[0-9]+$/";