Connect the network volume to a dedicated server with Windows OS
Read more about network volumes in the General Product Information for Network volumes guide.
- Create a SAN network.
- Connect the network volume to the server.
- Connect the network volume to the server in the server OS.
- Configure MPIO.
- Optional: connect the network volume to another server.
- Prepare the network volume for operation.
1. Create a SAN network
-
In the Control panel, on the top menu, click Products and select Dedicated Servers.
-
Go to the Network → tab SAN network.
-
Click Add SAN network.
-
Select an availability zone.
-
Enter a subnet address from the private range (
10.0.0.0/8,172.16.0.0/12,192.168.0.0/16) or keep the default subnet. The subnet size must be/20.
Ensure that the subnet is not used in your infrastructure. -
Click Create SAN network.
2. Connect the network volume to the server
-
In the Control panel, on the top menu, click Products and select Dedicated Servers.
-
Go to the Network Volumes and Storage section → Network Volumes tab.
-
Open the volume page → Connect to Server tab.
-
In the Server field, click Select.
-
Select the server to which the network volume will be connected.
-
Click Confirm.
-
If you are connecting a network volume to a server with a private network, configure the network:
7.1. Select a VLAN.
7.2. Enter the subnet CIDR from the private address range
10.0.0.0/8,172.16.0.0/12or192.168.0.0/16.
Ensure that the subnet does not overlap with the SAN network you created in step 1 and that you are not using it elsewhere in your infrastructure.7.3. Enter the Next hop 1 and Next hop 2 addresses from the selected private subnet.
7.4. Click Configure.
3. Connect the network volume to the server in the server OS
You can connect a network volume to a server manually or by using a ready-made script generated in the control panel. The script can only be used on Ubuntu OS — see the Connect a network volume to a dedicated Linux server instruction for details.
If your server is using Hyper-V, the network volume will not work. This is because the disk via an iSCSI connection does not support SCSI-3 Persistent Reservations, which are required for Hyper-V to run in Failover Cluster mode.
The process of connecting a network volume in the server OS through a private subnet depends on the number of ports:
- if the server has two local ports, use the instructions for two ports;
- if the server has only one local port or MC-LAG is configured, use the instructions for one port.
SAN network
Private network: one port
Private network: two ports
-
Run PowerShell as an administrator.
-
Print the list of network interfaces:
Get-NetIPInterface -
Add IP addresses to the network interfaces connected to the SAN switch:
New-NetIPAddress -InterfaceAlias "<eth_name_1>" -IPAddress <ip_address_1> -PrefixLength <mask_1> -DefaultGateway <next_hop_1>New-NetIPAddress -InterfaceAlias "<eth_name_2>" -IPAddress <ip_address_2> -PrefixLength <mask_2> -DefaultGateway <next_hop_2>Specify:
<eth_name_1>- the name of the first network interface you obtained in step 3;<ip_address_1>- IP address of the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Port IP address;<mask_1>- destination subnet mask for the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Static routes for connecting to iSCSI targets → column Destination Subnet;<next_hop_1>- gateway for the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Next hop (gateway);<eth_name_2>- the name of the second network interface you obtained in step 3;<ip_address_2>- IP address of the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Port IP address;<mask_2>- destination subnet mask for the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Static routes for connecting to iSCSI targets → column Destination Subnet;<next_hop_2>- gateway for the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Next hop (gateway).
-
Configure static routes to access iSCSI targets:
route add <destination_subnet_1> mask <mask_1> <next_hop_1> -proute add <destination_subnet_2> mask <mask_2> <next_hop_2> -pSpecify:
<destination_subnet_1>- destination subnet for the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Static routes for connecting to iSCSI targets → column Destination Subnet;<mask_1>- destination subnet mask for the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Static routes for connecting to iSCSI targets → column Destination Subnet;<next_hop_1>- gateway for the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Next hop (gateway);<destination_subnet_2>- destination subnet for the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Static routes for connecting to iSCSI targets → column Destination Subnet;<mask_2>- destination subnet mask for the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Static routes for connecting to iSCSI targets → column Destination Subnet;<next_hop_2>- gateway for the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Next hop (gateway).
-
Check that the static routes configured in step 5 have been applied:
route print -4 -
Check that the speed of each interface is at least 10 Gbit/s:
Get-NetAdapter | Where-Object { $_.Name -eq "<eth_name_1>" } | Select-Object -Property Name,LinkSpeedGet-NetAdapter | Where-Object { $_.Name -eq "<eth_name_2>" } | Select-Object -Property Name,LinkSpeedSpecify
<eth_name_1>and<eth_name_2>- the names of the network interfaces configured in step 4. -
If the speed is below 10 Gbit/s, create a ticket.
-
Check that the iSCSI target is available:
ping <iscsi_target_ip_address_1>ping <iscsi_target_ip_address_2>Specify:
<iscsi_target_ip_address_1>- IP address of the first iSCSI target. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field IP address of the iSCSI target 1;<iscsi_target_ip_address_2>- IP address of the second iSCSI target. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field IP address of the iSCSI target 2.
-
Get information about the Microsoft iSCSI Initiator Service:
Get-Service MSiSCSIThe response will show the service status. For example:
Status Name DisplayName------ ---- -----------Running MSiSCSI Microsoft iSCSI Initiator ServiceHere, the
Statusfield shows the current status of the service. -
If the Microsoft iSCSI Initiator Service status is
Stopped, start it:Start-Service MSiSCSI -
Enable the automatic startup of the Microsoft iSCSI Initiator Service:
Set-Service -Name MSiSCSI -StartupType Automatic -
Set the iSCSI initiator name:
iscsicli NodeName "<initiator_name>"Specify
<initiator_name>- iSCSI initiator name. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field Initiator name. -
Connect the iSCSI target portals:
New-IscsiTargetPortal -TargetPortalAddress <ip_address_portal_1> -TargetPortalPortNumber 3260 -InitiatorPortalAddress <ip_address_1>New-IscsiTargetPortal -TargetPortalAddress <ip_address_portal_2> -TargetPortalPortNumber 3260 -InitiatorPortalAddress <ip_address_2>Specify:
<iscsi_target_ip_address_1>- IP address of the first iSCSI target. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field IP address of the iSCSI target 1;<ip_address_1>– IP address of the first port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Port IP address;<iscsi_target_ip_address_2>- IP address of the second iSCSI target. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field IP address of the iSCSI target 2;<ip_address_2>– IP address of the second port on the network card. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring network interfaces → column Port IP address.
-
Configure authentication on the iSCSI target via iSCSI interfaces:
$iusr="<username>"$ipasswd="<password>"$sts=$(Get-IscsiTarget | Select-Object -ExpandProperty NodeAddress)foreach ($st in $sts) {$tpaddr=($st -split ":")[-1]Connect-IscsiTarget -NodeAddress $st -TargetPortalAddress $tpaddr -TargetPortalPortNumber 3260 -IsPersistent $true -AuthenticationType ONEWAYCHAP -ChapUsername $iusr -ChapSecret $ipasswd}Specify:
<username>- username to authorize the iSCSI initiator. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field Username;<password>- password to authorize the iSCSI initiator. You can view it in the control panel: in the top menu, click Products → Dedicated Servers → section Network volumes and Storage → tab Network volumes → disk page → block Configuring an iSCSI connection → field Password.
-
Print the list of iSCSI targets:
Get-IscsiTargetThe response will show the list of iSCSI targets. For example:
IsConnected NodeAddress PSComputerName----------- ----------- --------------True iqn.2001-07.com.ceph:user-target-99999:203.0.113.101True iqn.2001-07.com.ceph:user-target-0398327:203.0.113.102 -
Make sure that for each iSCSI target, the parameter
IsConnectedis set toTrue. -
Check that the network volume has appeared in the list of available disks:
Get-Disk | Select-Object Number, FriendlyName, SerialNumber, BusType, OperationalStatusThe response will show the list of disks. For example:
Number FriendlyName SerialNumber BusType OperationalStatus------ ------------ ------------ ------- -----------------0 Samsung SSD 860 EVO Z3AZNF0N123456 SATA Online1 WDC WD2003FZEX-00Z4SA0 WD-1234567890 SATA Online2 Virtual iSCSI Disk 0001-9A8B-CD0E1234 iSCSI Online3 SanDisk Ultra USB 4C531001230506 USB OnlineWhere:
BusType- disk type;2- network volume number;OperationalStatus— network volume status,OfflineorOnline.
-
If the network volume status is
Offline, set it toOnline:Set-Disk -Number <block_storage_number> -IsOffline $falseSpecify
<block_storage_number>is the network volume number you obtained in step 18. -
Initialize the network volume:
Initialize-Disk -Number <block_storage_number> -PartitionStyle GPTSpecify
<block_storage_number>is the network volume number you obtained in step 18. -
If you are connecting the network volume to the server for the first time, create and format a partition on the network volume:
21.1. Create a partition on the network volume:
New-Partition -DiskNumber <block_storage_number> -UseMaximumSize -AssignDriveLetterSpecify
<block_storage_number>is the network volume number you obtained in step 18.21.2. Format the network volume partition to the desired file system:
-
if you are connecting the network volume to only one server, format the network volume partition to the NTFS file system:
Format-Volume -DriveLetter <volume_letter> -FileSystem NTFS -NewFileSystemLabel "<label>"Specify:
<volume_letter>- volume letter;<label>- file system (volume) label.
-
if you are connecting one network volume to two or more servers, you must use the ReFS file system in conjunction with CSV (Cluster Shared Volumes) — see the Resilient File System (ReFS) overview in the Microsoft documentation.
-
4. Configure MPIO
MultiPath-IO (MPIO) - Multi-path I/O to improve the fault tolerance of data transfer to a network volume.
-
Disconnect iSCSI sessions:
$session = Get-IscsiSession -
Install MPIO components:
Install-WindowsFeature Multipath-IO -
Enable MPIO:
Enable-WindowsOptionalFeature -Online -FeatureName MultiPathIO -
Get the list of devices that support MPIO:
mpclaim.exe -eThe command output will display the devices that support MPIO. For example:
"Target H/W Identifier " Bus Type MPIO-ed ALUA Support-------------------------------------------------------------------------------"LIO-ORG TCMU device " iSCSI NO Implicit OnlyHere
LIO-ORG TCMU deviceis the network volume ID. -
Enable MPIO support for the network volume:
mpclaim.exe -r -i -d "<block_storage_device>"Specify
<block_storage_device>— the network volume ID that you obtained in step 4. Note that the ID must be entered with spaces. -
Check the MPIO status:
Get-MPIOAvailableHWThe command output will display the MPIO status for the network volume. For example:
VendorId ProductId IsMultipathed IsSPC3Supported BusType-------- --------- ------------- --------------- -------LIO-ORG TCMU device True True iSCSIHere the
IsMultipathedfield displays the MPIO status. -
Make sure the mechanism for checking path availability to MPIO devices is enabled:
(Get-MPIOSetting).PathVerificationStateThe command output will display the status of the MPIO device path availability mechanism. For example:
Enabled -
If the MPIO device path availability mechanism is in the
Disabledstatus, enable it:Set-MPIOSetting -NewPathVerificationState Enabled -
Associate the volumes on the network volume with logical partitions in the server OS:
iscsicli.exe BindPersistentDevices -
Allow the server OS to access the contents of the network volume volumes:
iscsicli.exe BindPersistentVolumes -
Make sure the network volume is registered in the server OS configuration as a persistent device:
iscsicli.exe ReportPersistentDevicesThe response will contain information about the network volume as a persistent device. For example:
Persistent Volumes"D:\"Here
D:\is a volume on the network volume.
5. Optional: connect the network volume to another server
- Connect the network volume to the server in the control panel.
- Connect the network volume to the server in the server OS.
- Configure MPIO.
6. Prepare the network volume for operation
You can format the network volume that you connected to the server to the desired file system:
- ReFS (Resilient File System) is a fault-resilient file system designed to increase data availability, scale for large data sets in workloads, and ensure data integrity with resiliency to corruption. If you are connecting a single network volume to two or more servers, you must use the ReFS file system together with CSV (Cluster Shared Volumes) — see the Resilient File System (ReFS) overview in the official Microsoft documentation;
- a standard file system, for example, NTFS (New Technology File System). Please note that the NTFS file system does not support simultaneous read-write access from multiple servers to avoid data corruption. For shared access from multiple servers, use specialized file systems.