Bug #13976
closedSNMP logs "Device not configured" error message when queries involve built-in switch port interfaces
100%
Description
SNMP polls cause the following errors in system logs:
Feb 17 12:52:11 snmpd 9415 SIOCGIFDESCR (e6000sw0port1): Device not configured
Feb 17 12:52:11 snmpd 9415 SIOCGIFDESCR (e6000sw0port2): Device not configured
Feb 17 12:52:11 snmpd 9415 SIOCGIFDESCR (e6000sw0port3): Device not configured
It affects all models with in-built switch
Related issues
Updated by Michael Novotny over 1 year ago
Ditto. Same here after upgrading HA 7100's from 22.05 to 23.01.
Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port10): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port9): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port8): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port7): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port6): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port5): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port4): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port3): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port2): Device not configured Feb 27 07:39:16 snmpd 43744 SIOCGIFDESCR (e6000sw0port1): Device not configured
Updated by Jim Pingle over 1 year ago
- Subject changed from Error messages from snmpd on boards with in-built switches to SNMP logs "Device not configured" error message when queries involve built-in switch port interfaces
- Category changed from SNMP to Interfaces
- Assignee set to Luiz Souza
- Target version set to 23.05
- Start date deleted (
02/17/2023)
This appears to be the same as #8600 and to fix it then, we suppressed that error.
Updated by Jim Pingle over 1 year ago
- Related to Bug #8600: "snmpd SIOCGIFDESCR (e6000sw0port1): Device not configured" added
Updated by Jim Pingle over 1 year ago
- Has duplicate Regression #14099: snmpd SIOCGIFDESCR (e6000sw0port1): Device not configured added
Updated by Manuel M. over 1 year ago
I have the same on my Netgate 7100. Hope there is a fix soon because this ** is flooding mit logs :/
Updated by Jim Pingle over 1 year ago
The last time we fixed this appears to be in src commit b33b6cb8a704be9c4053ca4f050357cd9eb0a13d (Internal link: https://gitlab.netgate.com/pfSense/FreeBSD-src/-/commit/b33b6cb8a704be9c4053ca4f050357cd9eb0a13d ) but that diff doesn't pick cleanly onto a current tree, so may need some adapting. It was a one-line change, though, so hopefully simple.
Updated by Jim Pingle over 1 year ago
It looks like this would be a current equivalent change:
diff --git a/contrib/bsnmp/snmp_mibII/mibII.c b/contrib/bsnmp/snmp_mibII/mibII.c
index 2a4e3756bdc5..d003e0b12797 100644
--- a/contrib/bsnmp/snmp_mibII/mibII.c
+++ b/contrib/bsnmp/snmp_mibII/mibII.c
@@ -563,7 +563,7 @@ mib_fetch_ifmib(struct mibif *ifp)
if (ioctl(mib_netsock, SIOCGIFDESCR, &irr) == -1) {
free(ifp->alias);
ifp->alias = NULL;
- if (errno != ENOMSG)
+ if (errno != ENOMSG && errno != ENXIO)
syslog(LOG_WARNING, "SIOCGIFDESCR (%s): %m", ifp->name);
} else if (irr.ifr_buffer.buffer == NULL) {
free(ifp->alias);
But someone more familiar with the code than I should look that over first.
Updated by Luiz Souza over 1 year ago
- Status changed from New to Feedback
- % Done changed from 0 to 100
Fixed.
Updated by Christian McDonald over 1 year ago
- Status changed from Feedback to Resolved
Updated by Jim Pingle over 1 year ago
Before upgrading to the current snapshot:
$ snmpwalk -v 2c -c public 198.51.100.24 ifName May 3 09:59:53 ood snmpd[58869]: SIOCGIFDESCR (e6000sw0port0): Device not configured May 3 09:59:53 ood snmpd[58869]: SIOCGIFDESCR (e6000sw0port1): Device not configured May 3 09:59:53 ood snmpd[58869]: SIOCGIFDESCR (e6000sw0port2): Device not configured May 3 09:59:53 ood snmpd[58869]: SIOCGIFDESCR (e6000sw0port3): Device not configured
After upgrading to the current snapshot there are no errors in the log when running the same command.