Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to validate if hosts have all the required ISCSI sessions (cli or powershell)
2019-11-27
07:11 AM
2,231 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Anyone that knows how to validate if a host has created all the required ISCSI sessions?
Validation from storage and not from host
iscsi connection show -vserver svm_name
Only shows the active session and not all possible sessions.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Following two commands are good enough to find out how many remote Hosts are connected to your storage via 'igroup'.
::> igroup show -fields initiator
::> vserver iscsi initiator show
This command gives real-time status of connection activity:
vserver iscsi connection show
vserver iscsi session show : Displays all session information for the specified Vserver(s). An iSCSI session can have one or multiple connections. Typically a session has at least one connection.
Powershell:
PS C:\WINDOWS\system32> Get-NcIscsiInitiator
PS C:\WINDOWS\system32> Get-NcIscsiSession
PS C:\WINDOWS\system32> Get-NcIscsiConnection
