yeah, I mean isn't that what you want access to? The output of that command?
I didn't poke around the mib file. Some of that might already be in there. If its not here is the quick and dirty.
I made a script to print MDS + CMA names. (MDSnames.sh)
#!/bin/bash
. /etc/profile
MDSname=$(hostname)
echo $HOSTNAME
for x in $($MDSVERUTIL ALLCMAs)
do
echo $x
done
edit /etc/snmp/userDefinedSettings.conf
add
extend MDSnames /bin/bash /home/admin/MDSnames.sh
restart snmp
OID would be nsExtendedOutLine.\"MDSnames\"
\" are required if doin this via command line.
output will be like
NET-SNMP-EXTEND-MIB:nsExtendOutLine."MDSnames".1 = STRING: MDS_NAME_HERE
NET-SNMP-EXTEND-MIB:nsExtendOutLine."MDSnames".2 = STRING: FIRST_CMA_HERE
etc
good luck!