If you have access to snmpget, you can do this:
cfSettings:
   snmpget -v 1 <filer> -c public .1.3.6.1.4.1.789.1.2.3.1.0
   Values returned: notConfigured(1),  enabled(2),  disabled(3), takeoverByPartnerDisabled(4),  thisNodeDead(5)
cfState:
   snmpget -v 1 <filer> -c public .1.3.6.1.4.1.789.1.2.3.2.0
   Values returned: dead(1), canTakeover(2),  cannotTakeover(3), takeover(4)
cfInterconnectStatus:
   snmpget -v 1 <filer> -c public  .1.3.6.1.4.1.789.1.2.3.8.0
   Values returned:  notPresent(1),  down(2), partialFailure(3), up(4)
   Example:
   > snmpget -v 1 beany -c public .1.3.6.1.4.1.789.1.2.3.8.0
   SNMPv2-SMI::enterprises.789.1.2.3.8.0 = INTEGER: 2  => down
   > snmpget -v 1 zan -c public .1.3.6.1.4.1.789.1.2.3.8.0
  SNMPv2-SMI::enterprises.789.1.2.3.8.0 = INTEGER: 4 => up
   - Rick -