Install cifs utils
sudo apt install cifs-utils
Add the following to /etc/fstab
//10.10.10.20/vadim-media /media/vadim-media/ cifs credentials=/home/srv01/.smbcredentials,iocharset=utf8,file_mode=0777,dir_mode=0777
Create the credentials file
nano ~/.smbcredentials
username=msusername
password=mspassword
Change the permissions of the file to prevent unwanted access to your credentials:
sudo chmod 600 ~/.smbcredentials
Check to see if it works
sudo mount -a