简体中文版经机器翻译而成,仅供参考。如与英语版出现任何冲突,应以英语版为准。
配置存储网络接口控制器( NIC )
贡献者
建议更改
如果您要使用额外的 NIC 进行存储,则可以通过 SSH 连接到管理节点或使用 vCenter 控制台并运行 cURL 命令来设置已标记或未标记的网络接口。
开始之前
-
您知道 eth0 IP 地址。
-
您的集群版本运行的是 NetApp Element 软件 11.3 或更高版本。
-
您已部署管理节点 11.3 或更高版本。
配置选项
选择与您的环境相关的选项:
为未标记的网络接口配置存储网络接口控制器( NIC )
步骤
-
打开 SSH 或 vCenter 控制台。
-
替换以下命令模板中的值并运行命令:
新存储网络接口所需的每个参数的值以 ` $` 表示。以下模板中的 cluster
对象为必填项,可用于管理节点主机名重命名。` -insecure` 或 ` -k` 选项不应在生产环境中使用。curl -u $mnode_user_name:$mnode_password --insecure -X POST \ https://$mnode_IP:442/json-rpc/10.0 \ -H 'Content-Type: application/json' \ -H 'cache-control: no-cache' \ -d ' { "params": { "network": { "$eth1": { "#default" : false, "address" : "$storage_IP", "auto" : true, "family" : "inet", "method" : "static", "mtu" : "9000", "netmask" : "$subnet_mask", "status" : "Up" } }, "cluster": { "name": "$mnode_host_name" } }, "method": "SetConfig" } '
为带标记的网络接口配置存储网络接口控制器( NIC )
步骤
-
打开 SSH 或 vCenter 控制台。
-
替换以下命令模板中的值并运行命令:
新存储网络接口所需的每个参数的值以 ` $` 表示。以下模板中的 cluster
对象为必填项,可用于管理节点主机名重命名。` -insecure` 或 ` -k` 选项不应在生产环境中使用。curl -u $mnode_user_name:$mnode_password --insecure -X POST \ https://$mnode_IP:442/json-rpc/10.0 \ -H 'Content-Type: application/json' \ -H 'cache-control: no-cache' \ -d ' { "params": { "network": { "$eth1": { "#default" : false, "address" : "$storage_IP", "auto" : true, "family" : "inet", "method" : "static", "mtu" : "9000", "netmask" : "$subnet_mask", "status" : "Up", "virtualNetworkTag" : "$vlan_id" } }, "cluster": { "name": "$mnode_host_name", "cipi": "$eth1.$vlan_id", "sipi": "$eth1.$vlan_id" } }, "method": "SetConfig" } '