connect to sql via windows authentication over vpn

前端 未结 1 725
无人共我
无人共我 2020-12-23 18:00

Is there any way I can connect to a remote SQL server with Windows Authentication over VPN?

I can connect to the VPN server in Windows 7 using Domain Credentials li

相关标签:
1条回答
  • 2020-12-23 18:43

    Try creating a shortcut with:

    runas /noprofile /netonly /user:domain\username ssms.exe
    

    You may have to hard-code the path to ssms.exe. In a few locations it will look in SSMS like you are using your local credentials, but you should be able to verify on the remote server that your credentials are being passed.

    This of course depends on your requests being correctly routed to the destination SQL Server.

    0 讨论(0)
提交回复
热议问题