- Docs »
- netapp_eseries.santricity.na_santricity_discover – NetApp E-Series discover E-Series storage systems
-
You are reading the latest community version of the Ansible documentation. Red Hat subscribers, select 2.9 in the version selection to the left for the most recent Red Hat release.
netapp_eseries.santricity.na_santricity_discover – NetApp E-Series discover E-Series storage systems
Note
This plugin is part of the netapp_eseries.santricity collection (version 1.2.7).
To install it use: ansible-galaxy collection install netapp_eseries.santricity
.
To use it in a playbook, specify: netapp_eseries.santricity.na_santricity_discover
.
The below requirements are needed on the host that executes this module.
Parameter |
Choices/Defaults |
Comments |
ports
list
/ elements=string
|
Default:
[8443]
|
This option specifies which ports to be tested during the discovery process.
The first usable port will be used in the returned API url.
|
prefer_embedded
boolean
|
|
Give preference to Web Services Embedded when an option exists for both Web Services Proxy and Embedded.
Web Services Proxy will be utilized when available by default.
|
proxy_password
string
|
|
Web Service Proxy user password
|
proxy_url
string
|
|
Web Services Proxy REST API URL. Example https://192.168.1.100:8443/devmgr/v2/
|
proxy_username
string
|
|
Web Service Proxy username
|
proxy_validate_certs
boolean
|
|
Whether to validate Web Service Proxy SSL certificate
|
subnet_mask
string
/ required
|
|
This is the IPv4 search range for discovering E-Series storage arrays.
IPv4 subnet mask specified in CIDR form. Example 192.168.1.0/24 would search the range 192.168.1.0 to 192.168.1.255.
Be sure to include all management paths in the search range.
|
Note
Only available for platforms E2800 or later (SANtricity Web Services Embedded REST API must be available).
All E-Series storage systems with SANtricity version 11.62 or later will be discovered.
Only E-Series storage systems without a set admin password running SANtricity versions prior to 11.62 will be discovered.
Use SANtricity Web Services Proxy to discover all systems regardless of SANricity version or password.
- name: Discover all E-Series storage systems on the network.
na_santricity_discover:
subnet_mask: 192.168.1.0/24
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
systems_found
dictionary
|
on success |
Success message
Sample:
{"012341234123": { "addresses": ["192.168.1.184", "192.168.1.185"], "api_urls": ["https://192.168.1.184:8443/devmgr/v2/", "https://192.168.1.185:8443/devmgr/v2/"], "label": "ExampleArray01", "proxy_ssid: "", "proxy_required": false}, "012341234567": { "addresses": ["192.168.1.23", "192.168.1.24"], "api_urls": ["https://192.168.1.100:8443/devmgr/v2/"], "label": "ExampleArray02", "proxy_ssid": "array_ssid", "proxy_required": true}}
|