You can use the GetBootstrapConfig method to get cluster and node information from the bootstrap configuration file. Use this API method on an individual node before it has been joined with a cluster. The information this method returns is used in the cluster configuration interface when you create a cluster.
This method has no input parameters.
This method has the following return values:
Name | Description | Type |
---|---|---|
clusterName | Name of the cluster. | string |
mvip | Cluster MVIP address. Null if the node is not part of a cluster. | string |
nodeName | Name of the node. | string |
nodes | List of information about each node that is actively waiting to join the cluster. Possible values:
|
JSON object array |
svip | Cluster SVIP address. Null if the node is not part of a cluster. | string |
version | Version of Element software currently installed on the node that was called by this API method. | string |
Requests for this method are similar to the following example:
{ "method": "GetBootstrapConfig", "params": {}, "id" : 1 }
This method returns a response similar to the following example:
{ "id":1, "result":{ "clusterName":"testname", "nodeName":"testnode", "svip": "10.117.1.5", "mvip": "10.117.1.6", "nodes":[ { "chassisType":"R630", "cip":"10.117.115.16", "compatible":true, "hostname":"NLABP1132", "mip":"10.117.114.16", "mipV6":"fd20:8b1e:b256:45a::16", "nodeType":"SF2405", "role":"Storage", "version":"11.0" }, { "chassisType":"R630", "cip":"10.117.115.17", "compatible":true, "hostname":"NLABP1133", "mip":"10.117.114.17", "mipV6":"fd20:8b1e:b256:45a::17", "nodeType":"SF2405", "role":"Storage", "version":"11.0" }, { "chassisType":"R630", "cip":"10.117.115.18", "compatible":true, "hostname":"NLABP1134", "mip":"10.117.114.18", "mipV6":"fd20:8b1e:b256:45a::18", "nodeType":"SF2405", "role":"Storage", "version":"11.0" } ], "version":"11.0" } }
9.6