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 ...