I've got this rather strange error, when I tried to configure SP with ansible:
"msg": "Error modifying service processor network: calling: cluster/nodes/c4bbeb99-6f78-11ee-a14d-d039ea56a8e1: got {'message': 'Error in BMC Network configuration: enabled option for IPv4 interface is missing.', 'code': '13631591'}."
I think it wants this command ran before the config:
system service-processor network auto-configuration disable -address-family IPv4
but couldn't see it in na_ontap_service_processor_network module...
I have the following set:
address_type: ipv4
is_enabled: true
dhcp: none
ip_address: "{{ hostvars[nodename].interfaces.SP.ip | ipaddr('address') }}"
netmask: "{{ hostvars[nodename].interfaces.SP.ip | ipaddr('netmask') }}"
gateway_ip_address: "{{ hostvars[nodename].interfaces.SP.ip | ipaddr('last_usable') }}"
Is there something that I might be missing. The system is new and came with ONTAP 9.12.1P2
please ignore the ugly ansible vars...