How to provide our own sysDescr / sysOID in SNMPv2MIB?

Hi Frank,
As title, any way to provide own sysDescr / sysOID in SNMPv2MIB?
I see they’re hard-coded in AgentConfigManager and no method provided to update them.
Thanks.

You can modify both values very easily, for example sysDescr with:

agentConfigManager.getSNMPv2MIB().getDescr().setValue("your sys-descr");

Get it.
Thanks Frank.