Using XenCenter
- Open XenCenter
- Connect to your server
- Click New Storage
- Select Windows File Sharing (CIFS) and click Next
- Give the SR a name, I used NAS Storage
- The Share Name is actually the full path, so: \\nas301.service.softlayer.com\SLXXXXX-X
- Check the Use different user name checkbox and enter the user name and password for your NAS (SLXXXXX-X / MxXXXXX)

- Click Finish
Using the Command Line
Creating an ISO library from a NAS folder is a 2 step process:
- Mount the NAS to the XenServer host
- Create an SR from the NAS
To mount the NAS
# mkdir /mnt/nas
# mount -t cifs //nas.mydomain.com/myshare /mnt/nas -o username=MyNASUserName,password=MyNASPwd
To create an SR from the NAS
# mkdir /mnt/nas/iso
# xe sr-create name-label=ISO type=iso device-config:location=/mnt/nas/iso device-config:legacy mode=true content-type=iso
