|
APIs in Category: fc |
API version 1.8 |
fc-config-adapter-disable |
Data ONTAP supports three separate functions with Fibre channel controllers: |
| fc-config-adapter-disable | [top] |
Call the corresponding adapter driver disable function to bring the adapter offline. Under some circumstances an adapter can not be put offline. (e.g. when the adapter is being used by the RAID sub-system to provide disks in a volume). In some cases, manual intervention is required. When this happens, an appropriate error messages is returned.
Input Name Range Type Description adapter-name string
FC adapter name (e.g. 0a)
Errno Description EINTERNALERROR EADAPTERNOTFOUND EADAPTERINVALIDTYPE ENOTSTARTED EONTAPI_EINVAL
| fc-config-adapter-enable | [top] |
Call the corresponding adapter driver enable function to bring the adapter online. Under some circumstances an adapter can not be brought online. (e.g. when that adapter is in the UNCONFIGURED state, or when there is no cable attached to the adapter port). When this happens, an appropriate error messages is returned.
Input Name Range Type Description adapter-name string
FC adapter name (e.g 0a)
Errno Description EINTERNALERROR EADAPTERNOTFOUND EADAPTERINVALIDTYPE ENOTSTARTED EONTAPI_EINVAL
| fc-config-list-iter-end | [top] |
Terminate the fc-config-list iteration
Input Name Range Type Description tag string
Tag from a previous fc-config-list-iter-start.
Errno Description EONTAPI_ENOENT
| fc-config-list-iter-next | [top] |
Obtain a list of adapter configuration information.
Input Name Range Type Description maximum integer
Maximum number of entries to retrieve. tag string
Tag from a previous fc-config-list-iter-start. Output Name Range Type Description adapter-info fc-config-info[]
List of adapter information records integer
This tells you how many records are being returned. When this value is 0, you have retrieved everything.
Errno Description EONTAPI_ENOENT
| fc-config-list-iter-start | [top] |
Start iteration through the list of adapter configuration information.
Output Name Range Type Description records integer
Number of items that have been saved for future retrieval with fc-config-list-iter-next. tag string
Tag to be used in subsequent iterations.
Errno Description EINTERNALERROR EOPNOTSUPPORTED
| fc-config-set-adapter-fc-type | [top] |
fc-config-set-adapter-fc-type changes the adapter driver and/or configuration state. Each configurable adapter has an adapter-type and adapter-state. The adapter-type indicates which driver is attached to the adapter, the adapter-state indicates what the configuration state of the adapter is. The fc-type is used to modify both the adapter-type and the adapter-state. After setting the adapter fc-type a filer reboot is sometimes needed to make the change effective. Use fc-config-list-info to determine if a filer reboot is needed.
Input Name Range Type Description adapter-name string
FC adapter name (e.g 0a) fc-type string
Sets the type and state of the adapter. Possible inputs:
"unconfigured" - set adapter-type to "initiator" and adapter-state to UNCONFIGURED
"initiator" - set adapter-type to "initiator" and adapter-state to CONFIGURED
"target" - set adapter-type to "target" and adapter-state to CONFIGURED
"vi" - set adapter-type to "vi" and adapter-state to CONFIGURED
Errno Description EINTERNALERROR EADAPTERNOTFOUND EADAPTERINVALIDTYPE EOPNOTSUPPORTED EONTAPI_EINVAL
| Element definition: fc-config-info | [top] |
Name Range Type Description adapter-name string
FC adapter name (e.g. 0c) adapter-state string
Indicates what the adapter configuration state is. Possible values:
"UNDEFINED" - The default state. The adapter has never been configured.
"CONFIGURED" - The adapter port is configured and the adapter is operational.
"UNCONFIGURED" - The adapter is unconfigured. The initiator driver is attached, but the adapter is not operational.
"PENDING" - The adapter is waiting for a filer reboot to effect an fc-type change.
While in the PENDING state the adapter can not be usedadapter-status string
Possible values:
"online" - adapter driver is enabled
"offline" - adapter driver is disabled
adapter-type string
Indicates which driver is attached to the adapter. Possible values:
"initiator" - the storage Initiator driver (default)
"vi" - the FC-VI cluster interconnect driver
"target" - the FCP Target driver
pending-fc-type string
optional
If adapter-state is PENDING, this value tells what the last fc-config-set-adapter-fc-type command was.