I am planning to migrate obsolete on-premise SQL Server database to Azure SQL Managed Instance using Azure DMS online migration and am preparing the prerequisites according to this documentation.
I see that DMS needs to fetch the database backup files from on-premise file share via SMB protocol but since the on-prem SQL VM is obsolete and currently supports only SMB1, can Azure DMS access the file share via SMB1? I don't have control over the on-prem VM that is being migrated so I could not perform any updates or patching whatsoever.
I read through the docs but couldn't find anything about SMB version.
If DMS does not support SMB1, what are the options that I have to perform the migration? Two things that I can think of are
I provision a new on-premise VM that supports SMB3 and store database backup files on that VM instead. (Not sure if obsolete VM can put the backup files on new VM via SMB3, though)
Create Azure File Share and map the share to the obsolete VM. Let DMS access the backup files on Azure File Share instead.
Any suggestions are welcomed. Thanks.