Calix E7-2 - Polling took longer than 5 minutes!

Hi everyone,

I’m having an issue with the EXA devices. I have more than 500 clients connected to that device. Each client in the snmpwalk it’s seen as an interface.

I’ve managed to ignore upon discovery using the $config[‘bad_ifname_regexp’] = ‘/^Ont \d+/[gG]1$/’;

There is no interface of that type displayed on the device, but when it comes to polling, it’s showing the error: “Polling took longer than 5 minutes! This will cause gaps in graphs.”

I understand it’s a normal behavior because there are a lot of interfaces. but it’s there a way I can force LibreNMS to stop polling those interfaces ?

The names of the interfaces are like: Ont 123456/g1.

I want to stop polling those type of interfaces.

Try enabling selected port polling for that device: Performance - LibreNMS Docs

Thank you for your response.

But this way I need to manually toggle every port that I don’t want to be polled, correct ?

No, you’ve already filtered them out with the bad_ifname_regexp config

Thank you for the help.

Got it fixed.

If you have some ONT’s you need to monitor… Say a business…

You will need to change the AXOS to EXA…
We use the CXNK number of the ONT when we provision the ONT.

Add the following to config.php

Sets the selected port polling on all of your E7’s

$config [‘os’][‘axos’][‘polling’][‘selected_ports’] = true;

Disables polling of ONT’s on AXOS

$config [‘os’][‘axos’][‘bad_if’] = ‘/^CXNK[0-9]*/’;

Enables polling of specific ONT’s on AXOS

Add a line for each ONT you want to poll

$config [‘os’][‘axos’][‘good_if’] = ‘CXNK00DD0247’;

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.