Netapp

如何重命名和更改 Netapp Filer 的 IP 地址?

  • January 26, 2013

我有一個舊的 Netapp 文件管理器,我正在將所有 NTFS 文件遷移到新的 NAS。

我將為新的 NAS 設置與舊的 netapp 文件管理器相同的 IP 和 CIFS 伺服器名稱。這部分我知道該怎麼做。

但是,除了簡單地關閉舊的 netapp 文件管理器之外,有沒有辦法可以更改舊的 netapp 文件管理器上的 IP 和“CIFS 伺服器”的名稱,以便我可以在需要時讓它線上幾個星期從中抓取文件或進行最終備份?

這適用於 data ontap 7.2

這是 ontap 的 ifconfig 手冊頁的連結:http: //ecserv1.uwaterloo.ca/netapp/man/man1/na_ifconfig.1.html

這是 cifs 命令的一個:http://ecserv1.uwaterloo.ca/netapp/man/man1/na_cifs.1.html

更改您的 IP 將是這樣的(您可能希望在從控制台登錄時執行此操作,以防不明顯):

# Get the name of the interface your current IP is assigned to, as well as 
# netmask, etc
ifconfig -a

# down the interface (i'm not actually sure if this is needed)
ifconfig INTERFACE down

# bring the interface back up with the new network info (substituting the
# correct values for INTERFACE, NETMASK, and ADDRESS)
ifconfig INTERFACE ADDRESS netmask NETMASK ip

您可能還必須編輯文件管理器的 etc/ 目錄中的一些文件,以使更改在重新啟動後持續存在,正如我所說的那樣已經很長時間了。cd 到文件管理器的 etc 和 grep 以獲取目前 IP 以獲得一個想法。

至於重命名共享……看起來你不能直接重命名,你要刪除舊的並用新名稱重新創建它。像這樣的東西怎麼樣:

# show the info about the current shares:
cifs shares

# change the share name
cifs shares -delete OLDSHARE

# add the new name with the same settings as the old
cifs shares -add NEWNAME [options]

有關重新創建共享時的選項的更多資訊,請參閱 na_cifs_shares 手冊頁 ( http://ecserv1.uwaterloo.ca/netapp/man/man1/na_cifs_shares.1.html )

希望能有所幫助…

引用自:https://serverfault.com/questions/213394