The current definition of snmpifdescr (varchar(255)) is enough to meet the definition in IF-MIB, but at least one non-conforming agent exists that returns longer values.
Simply increasing the width of the field and rescanning the node is enough to get OpenNMS to see the interface in question.
alter table snmpinterface
alter column snmpifdescr type varchar(512);
The current definition of snmpifdescr (
varchar(255)
) is enough to meet the definition in IF-MIB, but at least one non-conforming agent exists that returns longer values.Simply increasing the width of the field and rescanning the node is enough to get OpenNMS to see the interface in question.
alter table snmpinterface alter column snmpifdescr type varchar(512);