Works great for Hikvision, thank you so much!
One thing I have done is used "User Scripts" app from the unraid store and added the mount "At Startup of Array" so it will always mount the drive once the array has started-
#!/bin/bash
mount -r -t ext4 -o loop,rw /mnt/xxxxxx/cctv.img /mnt/user/cctv/
echo "mounted"
I have many VMs that run in different vlans, when I need to add a new vlan I have to shutdown all VMs and stop the array then I can add a new vlan and start everything back up.
this is not ideal, is there a better way without taking the whole server offline just to add a new vlan 😅