# systool -c fc_host -v | grep -i port_name
-> 확인된 Name San 엔지니어에게 전달
# cat /sys/class/fc_host/host2/port_name
-> 위와 동일한 정보 확인 가능
cd /sys/class/scsi_host/host#
여기서 #은 host 번호를 나타낸다.(0,1,2...)
해당 디렉토리를 살펴보면 다음과 같은 파일이 있다.
-rw-r--r-- 1 root root 4096 3월 15 09:51 beacon
-r--r--r-- 1 root root 4096 3월 15 09:51 cmd_per_lun
lrwxrwxrwx 1 root root 0 3월 15 09:51 device -> ../../../devices/pci0000:00/0000:00:04.0/0000:13:00.0/host0
-r--r--r-- 1 root root 4096 3월 15 09:51 driver_version
-r--r--r-- 1 root root 4096 3월 15 09:51 fw_version
-r--r--r-- 1 root root 4096 3월 15 09:51 host_busy
-r--r--r-- 1 root root 4096 3월 15 09:51 isp_id
-r--r--r-- 1 root root 4096 3월 15 09:51 isp_name
-r--r--r-- 1 root root 4096 3월 15 09:51 max_npiv_vports
-r--r--r-- 1 root root 4096 3월 15 09:51 model_desc
-r--r--r-- 1 root root 4096 3월 15 09:51 model_name
-r--r--r-- 1 root root 4096 3월 15 09:51 npiv_vports_inuse
-r--r--r-- 1 root root 4096 3월 15 09:51 pci_info
-r--r--r-- 1 root root 4096 3월 15 09:51 proc_name
--w------- 1 root root 4096 3월 15 09:51 scan
-r--r--r-- 1 root root 4096 3월 15 09:51 serial_num
-r--r--r-- 1 root root 4096 3월 15 09:51 sg_tablesize
-rw-r--r-- 1 root root 4096 3월 15 09:51 state
lrwxrwxrwx 1 root root 0 3월 15 09:51 subsystem -> ../../../class/scsi_host
--w------- 1 root root 4096 3월 15 09:51 uevent
-r--r--r-- 1 root root 4096 3월 15 09:51 unchecked_isa_dma
-r--r--r-- 1 root root 4096 3월 15 09:51 unique_id
--w--w--w- 1 root root 4096 3월 15 09:51 vport_create
--w--w--w- 1 root root 4096 3월 15 09:51 vport_delete
-rw-r--r-- 1 root root 4096 3월 15 09:51 zio
-rw-r--r-- 1 root root 4096 3월 15 09:51 zio_timer
여기서 driver_version , fw_version 파일을 열어보면 버전정보를 알 수 있으며
state 파일에 link 상태가 기록되어 있다.
위 관련 내용을 한꺼번에 조회하려면
# systool -vc scsi_host -v
lass Device = "host1"
Class Device path = "/sys/class/fc_host/host1"
fabric_name = "0x100000051e36281c"
issue_lip =
node_name = "0x2000001b328709b2"
port_id = "0x018680"
port_name = "0x2100001b328709b2"
port_state = "Online"
port_type = "NPort (fabric via point-to-point)"
speed = "4 Gbit"
supported_classes = "Class 3"
supported_speeds = "1 Gbit, 2 Gbit, 4 Gbit"
symbolic_name = "QLE2462 FW:v5.03.02 DVR:v8.03.01.04.05.05-k"
system_hostname = ""
tgtid_bind_type = "wwpn (World Wide Port Name)"
uevent =
[...SNIP]
이 외에도
# systool -c fc_host -v : HBA카드의 Device path, Link up/down 여구, Link Speed, Port type, wwn 등
# systool -c fc_remote_ports -v -d : HBA카드에 연결된 타겟 디바이스의 WWPN, WWNN등을 확인
# systool -c fc_transport -v : 위 명령어와 비슷한 결과
# systool -c scsi : 스트리지의 캐쉬타입, raid type, time out, 제조사 등의 정보 확인
# Emulex FC Card의 경우 /sys/class/scsi_host 디렉토리 내에 위치
참고사이트 : http://bigteo.tistory.com/60
'Linux > CentOS & RHEL' 카테고리의 다른 글
[Tip] CentOS 6.x / CentOS 7.x google-authenticator(google OTP) 설정 (0) | 2020.08.28 |
---|---|
[Tip] NTP 서버 설정 (0) | 2020.08.27 |
[Tip] Linux System Log 종류 (0) | 2020.08.27 |
[Tip] TCPWRAPPER 설정 (0) | 2020.08.27 |
[Bonding] CentOS / RHEL bonding 구성 (0) | 2020.08.20 |