On 2014-07-17 13:41, Paolo Giustiniani wrote:
Hello, this is my situation
IOS (tm) 7200 Software (C7200-IS-M), Version 12.3(15b), RELEASE SOFTWARE (fc1)
I retrive from command line this output
show ip route
xxxxxxxxxxxxx/32 is directly connected, Virtual-Access2.4
I have modify my file
/opt/observium/includes/defaults.inc.ph [2]
by adding the following lines
$config['bad_if'][] = "Virtual-Access"; $config['bad_if'][] = "Virtual-Access*";
This will *stop* Observium discovering these ports.
By default we don't discover virtual-access ports, because they're useless meaningless. If your 7200 is a bRAS or something, you really don't want to detect them, as they're heavy and numerous.
You shouldn't modify defaults.inc.php because it will be over-written by upgrades. For an unmodified defaults.inc.php, you can pull out the "virtual-" entry which is causing you problems by putting something like this in your config.php :
unset($config['bad_if'][1]);
The line with "virtual-" in should be index 1 in the array.
adam.