此產品有較新版本可以使用。
本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。
設定儲存網路介面控制器(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" } '