Como posso renomear e alterar o endereço IP de um Netapp Filer?

3

Eu tenho um arquivador antigo do Netapp para o qual estou migrando todos os arquivos NTFS para um novo NAS.

Vou configurar o novo NAS com o mesmo nome de servidor IP e CIFS que o antigo arquivador netapp. Esta parte eu sei fazer.

No entanto, a não ser simplesmente desligar o antigo netapp arquivador, existe uma maneira de alterar o IP e o nome do "servidor CIFS" no antigo arquivador netapp para que eu possa deixá-lo online por algumas semanas se Eu tenho que pegar arquivos fora dele ou fazer um backup final?

Isto é para dados ontap 7.2

    
por TheCleaner 16.12.2010 / 18:33

2 respostas

1

Aqui está um link para a página man ifconfig do ontap: link

Aqui está um dos comandos cifs: link

mudar o seu IP seria algo assim (você gostaria de fazer isso quando logado no console, caso não seja óbvio):

# 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

Você também pode ter que editar alguns arquivos no arquivo etc / dir do arquivador para fazer a alteração persistir durante a reinicialização, como eu disse que já faz muito tempo. cd para o arquivador etc e grep para o IP atual para ter uma idéia.

como para renomear o compartilhamento ... Parece que você não pode fazer uma renomeação em linha reta, você está em para apagar o antigo e recriá-lo com o novo nome. Que tal algo como isto:

# 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]

Veja a página do manual na_cifs_shares para mais informações sobre as opções ao recriar o compartilhamento ( link )

Espero que ajude um pouco ...

    
por 16.12.2010 / 21:21
5

Para fazer a alteração persistir em uma reinicialização, primeiro você precisa ler dois arquivos:

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

Agora você pode ver que o primeiro arquivo define o endereço IP de todas as interfaces, mas os valores do endereço IP são retirados do segundo arquivo (/ etc / hosts), então você tem que modificar o segundo arquivo:

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)

Agora, você pode reinicializar.

    
por 26.01.2013 / 18:09

Tags