web-dev-qa-db-ja.com

NetappファイラーのIPアドレスの名前を変更および変更するにはどうすればよいですか?

すべてのNTFSファイルを新しいNASに移行する古いNetappファイラーがあります。

新しいNASを、古いnetappファイラーと同じIPおよびCIFSサーバー名で設定します。この部分は、方法を知っています。

ただし、単に古いnetappファイラーをオフにするのではなく、古いnetappファイラーの「CIFSサーバー」のIPと名前を変更して、必要に応じて数週間オンラインのままにできる方法があります。それからファイルを取得するか、最終的なバックアップを行いますか?

これは7.2のデータ用です

3
TheCleaner

Ontapのifconfig manページへのリンクは次のとおりです。 http://ecserv1.uwaterloo.ca/netapp/man/man1/na_ifconfig.1.html

これは、cifsコマンドの1つです。 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/dir内のいくつかのファイルを編集して、変更が再起動後も持続するようにする必要がある場合もあります。ファイラーなどにcdし、現在のIPをgrepしてアイデアを取得します。

共有の名前の変更については...直接の名前変更はできないようです。古い名前を削除して、新しい名前で再作成しています。このようなものはどうですか:

# 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

それが多少役立つことを願っています...

1
jj33

再起動後も変更を維持するには、まず2つのファイルを読み取る必要があります。

ontap1> rdfile /etc/rc
#Auto-generated by setup Fri Jan 25 07:18:17 GMT 2013
hostname ontap1
ifconfig e0a `hostname`-e0a mediatype auto flowcontrol full netmask 255.255.255.0 mtusize 9000
ifconfig e0b `hostname`-e0b mediatype auto flowcontrol full netmask 255.255.255.0 mtusize 9000
ifconfig e0c `hostname`-e0c mediatype auto flowcontrol full netmask 255.255.255.0 mtusize 9000
ifconfig e0d `hostname`-e0d mediatype auto flowcontrol full netmask 255.255.255.0 mtusize 9000
route add default 10.19.11.1 1
routed on
options dns.domainname fibra
options dns.enable on
options nis.enable off
savecore

ontap1> rdfile /etc/hosts
#Auto-generated by setup Fri Jan 25 07:18:17 GMT 2013
127.0.0.1   localhost localhost-stack
127.0.10.1  localhost-10 localhost-bsd
127.0.20.1  localhost-20 localhost-sk
19.19.11.51 ontap1 ontap1-e0a
10.19.11.52 ontap1-e0b
10.19.11.53 ontap1-e0c
10.19.11.54 ontap1-e0d

最初のファイルはすべてのインターフェースのIPアドレスを設定しますが、IPアドレスの値は2番目のファイル(/ etc/hosts)から取得されるので、2番目のファイルを変更する必要があります。

wrfile /etc/hosts
#Auto-generated by setup Fri Jan 25 07:18:17 GMT 2013
127.0.0.1   localhost localhost-stack
127.0.10.1  localhost-10 localhost-bsd
127.0.20.1  localhost-20 localhost-sk
10.19.11.51 ontap1 ontap1-e0a
10.19.11.52 ontap1-e0b
10.19.11.53 ontap1-e0c
10.19.11.54 ontap1-e0d
(Ctrl-c)

これで再起動できます。

5
José Ibañez