Posted On March 31, 2019

Set up ESX with QNAP iSCCI targets

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Set up ESX with QNAP iSCCI targets
1. Download Qfinder: http://download.qnap.com/webstart/QNAPQfinder_Windows.exe
2. Login as admin / admin; then, set a new password
3. Upgrade firmware
4. System Settings – Hardware – uncheck “Enable Write Cache”
5. Set port trunking under Network link – choose 802.3ad for orderly aggregation
6. Set static IP address
7. Configure LUN under System Settings – Storage Manager
8. Turn off / remove all other applications
9. in vSphere Client, install iSCSI target with the IP of the QNAP

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Cisco VSAN: MDS Zoning Configuration for ESXi Host – Step by Step

Step 1: gather information A. VSAN Nodes Each site shall have two sets of MDS…

SAN Dell Equallogic PS6100E

Per documentation: Port density requirements to support fully redundant configurations and maximum SAN throughput for…

Hyper-V Set CompatibilityForMigrationEnabled

$vmName='TESTVM' function enableCpuCompatibility($vmName){ $compatibilityForMigration=(Get-VMProcessor $vmName).CompatibilityForMigrationEnabled if(!$compatibilityForMigration){ $vmIsRunning=(get-vm $vmname).State -eq 'Running' if($vmIsRunning){stop-vm $vmName} Set-VMProcessor$vmName -CompatibilityForMigrationEnabled 1…