How to collect firmware inventory for all HCA in a fabric - how to translate ibdiagnet2.db_csv to human readable format

Hi Heiner,

We don’t have an external script to translate the ibdiagnet2.db_csv file, but you can use the “mst ib add” output and create your own script.

Something similar to the following:

  1. mst start
  2. mst ib add
  3. mst status | grep CA > CA.list
  4. for i in $(cat CA.list); do flint -d $i q; done

Regards,

Viki