I have been tasked at the company I work for to make changes to a company generated MIB. That is it lives under the private sub tree.
The MIB has a table with a couple of object defined in the table.
They want the name of one of the object renamed.
Example:
TableEntry ::= SEQUENCE {
yada, yada
OldName Integer32
}
Can I just edit the MIB document to use the new name or do I need to deprecate the OldName and add a new entry and object for the new name?
TableEntry ::= SEQUENCE { yada, yada OldName Integer32, NewName Integer32 }
Seems like this would be harder on an NMS to as a GET on the OldName would return no such object for this table.