This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
linux:discover_devices [2021/12/30 22:56] manu |
linux:discover_devices [2022/03/20 22:05] (current) manu |
||
---|---|---|---|
Line 303: | Line 303: | ||
uevent = | uevent = | ||
</cli> | </cli> | ||
+ | |||
+ | ===== Rescan Iscsi ===== | ||
+ | |||
+ | <cli prompt='>'> | ||
+ | iscsiadm -m session # Obtain the list of all the current sessions | ||
+ | iscsiadm -m session --sid=N --rescan # Rescan a specific session N is the specific session ID. | ||
+ | iscsiadm -m session --rescan # Rescan all the sessions | ||
+ | /usr/bin/rescan-scsi-bus.sh # Rescan using the SCSI rescan script | ||
+ | </cli> | ||
+ | |||
+ | |||