Windows 10でVagrantの仮想マシン起動時にマウントで失敗

Windows 10でVagrantを使って仮想マシンを起動したとき、/vagrantフォルダをcifsでマウントしようとして失敗します。VagrantのプロバイダーはHyper-Vです。

==> default: Mounting SMB shared folders...
    default: E:/vagrant/Debian => /vagrant
Failed to mount folders in Linux guest. This is usually because
the "vboxsf" file system is not available. Please verify that
the guest additions are properly installed in the guest and
can work properly. The command attempted was:

mount -t cifs -o uid=1000,gid=1000,sec=ntlm,credentials=/etc/smb_creds_06fc4a57cab5868f1a4965e043cd4a19 //192.168.1.6/06fc4a57cab5868f1a4965e043cd4a19 /vagrant

The error output from the last command was:

mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

どうも、Windows 10 Fall Creators Updateでsmb v1が無効にされたのが原因のようです。 以下のサイトに解決方法が出ていて、本質的なものかどうか疑問なのですが、Windowsでsmb v1を有効にして解決できました。

https://github.com/docksal/docksal/issues/382