I am trying to connect to remote SQL Server using Windows Authentication over VPN. I did some research on that and found two ways to achieve this From here
The first approach works fine
runas /netonly /user:domain\username ssms.exe
But according to the second answer there it can also be achieved via windows credential manager. But that seems not working for me.
I have set these credentials in in credentials manager
192.168.0.58
Domain\usermane
*****
And the SQL Server instance in SSMS looks like this
192.168.0.58\\SQL2017,32839
Windows Authentication
Domanin\username
But this is not working. What am I doing wrong here?