HP ILO sensor component

Is a old post, however came here looking for help, as I got a DL380P to play with and got the Temperature sensors working with this:

  - name: Temperature_inlet
    sensor_type: server_health
    unit_of_measurement: '°C'
    value_template: '{{ ilo_data.temperature["01-Inlet Ambient"].currentreading[0] }}'
  - name: Temperature_exhaust 
    sensor_type: server_health
    unit_of_measurement: '°C'
    value_template: '{{ ilo_data.temperature["50-Sys Exhaust"].currentreading[0] }}'

I am struggling to get the info of NIC card on a gen8-Microserver. Have tried several “sensor”:

      - name: nic_ilo_ip_address
        sensor_type: server_health
        value_template: "{{ ilo_data.nic_information['iLO iLO Dedicated Network Port']['ip_address'] }}"
      - name: nic_ilo_ip_address
        sensor_type: network_settings
        value_template: "{{ ilo_data.network_settings['iLO iLO Dedicated Network Port']['ip_address'] }}"

Any hint is welcome !