3PAR – Automation/Part III: Collecting WWN of targets

磁盘存储、磁带存储、存储网络架构设备、存储软件等

版主: xyevolve

版面规则
1. 本版是定位于惠普存储产品的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
回复
admin
网站编辑
帖子: 767
注册时间: 2010年 12月 22日 04:06 星期三

3PAR – Automation/Part III: Collecting WWN of targets

帖子 admin » 2012年 5月 1日 21:33 星期二

3PAR – Automation/Part III: Collecting WWN of targets

Author Dung Hoang Khac

So the next task of this automation is to collect WWNs of 3PAR controller ports. As 3PAR provides a CLI interface and SSH, I leverage the same plink/putty tool used in the first part to connect to a 3PAR controller.

to get a list of WWNs of the ports, you issue the command showport –par

and the PowerShell command line is extremely simple ( using run-plink function defined in PART II)

run-plink –username 3paradm –password 3pardata –chassis 10.0.1.11 –cmd “showport” > c:\3PAR.txt

## Remove extra spaces

(type c:\3PAR.txt) -replace "\s+",";" | out-file c:\3PAR.txt

## Remove ‘-‘ character and ‘_’ character

(type c:\3PAR.txt) -replace "-+","" | out-file c:\3PAR.txt

(type c:\3PAR.txt) -replace "_","" | out-file c:\3PAR.txt

# Finally reformat the header

(type c:\3PAR.txt) -replace "/HWAddr","" | out-file c:\3PAR.txt

image29.png
Now I can create a CSV file

$a = import-csv –path c:\3PAR.txt
$a | out-gridview

image30.png
Collect-3PARTargets.zip
您没有权限查看这个主题的附件。

回复