The below requirements are needed on the host that executes this module.
. Search – Search by serial number. Also includes recent serial number searches. Profile – Place to update your personal details including location, phone number, and other information. Please note, while the skill is displayed, you cannot update this field. Please speak to your manager to make any changes. Locking a capacity pool license to an LM instance. After purchasing a capacity pool license from NetApp, you must associate the license serial number with a specific instance of the License Manager. This is done through the License Lock ID (LLID), a unique 128-bit number identifying each LM instance (and therefore each Deploy instance). NetApp Software Downloads and License Keys NetApp Software Products and License Keys are available for immediate download. Please refer to the 'Access Key' and 'Sales Order #' as part of the documentation included in the actual shipment.
- A physical or virtual clustered Data ONTAP system. The modules support Data ONTAP 9.1 and onward
- Ansible 2.6
- Python2 netapp-lib (2017.10.30) or later. Install using ‘pip install netapp-lib’
- Python3 netapp-lib (2018.11.13) or later. Install using ‘pip install netapp-lib’
- To enable http on the cluster you must run the following commands ‘set -privilege advanced;’ ‘system services web modify -http-enabled true;’
Parameter | Choices/Defaults | Comments | |
---|---|---|---|
hostname string / required | |||
http_port | Override the default port (80 or 443) with this port | ||
https boolean |
| Enable and disable https | |
license_codes - | |||
license_names | List of license-names to delete. | ||
base - | |||
cdmi | CDMI License | ||
cifs - | |||
fcp | FCP License | ||
flexclone - | |||
iscsi | iSCSI License | ||
nfs - | |||
snaplock | SnapLock License | ||
snapmanagersuite - | |||
snapmirror | SnapMirror License | ||
snapprotectapps - | |||
snaprestore | SnapRestore License | ||
snapvault - | |||
v_storageattach | Virtual Attached Storage License | ||
ontapi integer | |||
password | Password for the specified user. | ||
remove_expired |
| Remove licenses that have expired in the cluster. | |
remove_unused boolean |
| Remove licenses that have no controller affiliation in the cluster. | |
serial_number - | Serial number of the node associated with the license. This parameter is used primarily when removing license for a specific service. | ||
state - |
| Whether the specified license should exist or not. | |
use_rest string |
| REST API if supported by the target system for all the resources and attributes the module requires. Otherwise will revert to ZAPI. Never -- will always use the ZAPI | |
username | This can be a Cluster-scoped or SVM-scoped account, depending on whether a Cluster-level or SVM-level API is required. For more information, please read the documentation https://mysupport.netapp.com/NOW/download/software/nmsdk/9.4/. | ||
validate_certs |
| If set to no , the SSL certificates will not be validated.This should only set to False used on personally controlled sites using self-signed certificates. |
Note
- The modules prefixed with na_ontap are built to support the ONTAP storage platform.
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by an Ansible Partner. [certified]
Authors¶
- NetApp Ansible Team (@carchi8py) <ng-ansibleteam@netapp.com>
Hint
Netapp License Keygen Download
If you notice any issues in this documentation, you can edit this document to improve it.
As stated here, a LUN NAA (Network Address Authority) number is a globally unique identifier for a LUN. The NAA number can be used to determine a LUN’s serial number and vice-versa.
Netapp License Keygen Key
On an ESXi host we can easily find the NAA for a device, either in the vSphere client, or via PowerCLI, or ESXCLI (shown below):
NetApp explain that if you remove the vendor ID information from the NAA address then you are left with a hexadecimal string that when converted to ASCII will be the LUN serial number.
Netapp Warranty Check
With this example address naa.600a09803830352d687b473155367f69, the highlighted part is the hex string, whilst 600a0980 is the vendor ID. 3830352d687b473155367f69 in ASCII is 805-h{G1U6⌂i, which is the serial number for this LUN.
For convenience we can use PowerShell to do the conversion for us, using the following code:
Ran as a script, this takes the NAA address as an input, strips out the vendor ID and converts the remainder to ASCII. Credit to this article for most of the conversion code.
Netapp License Keygen App
This results in:
Potentially useful as a vSphere admin when talking to the storage guys!
If you’re interested in setting up your own NetApp test environment, have a look at this ebook about building your own NetApp ONTAP 9 lab.