Questions tagged «credssp»

1
将defaultAuthenticationType与PowerShell Web访问结合使用
使用PowerShell Web访问,可以选择身份验证类型。默认情况下,它使用的值为Default,最终为Negotiate。我设置了CredSSP,以允许使用CredSSP登录PSWA服务器本身,以便从会话内部进行网络身份验证(避免出现双跳问题,而无需在整个网络上委派凭据)。 无论如何,我希望CredSSP成为登录页面上的默认选项。 在IIS中查看PSWA Web应用程序的配置选项时,可以设置多个值以覆盖默认值。 其中一个称为defaultAuthenticationType,string但设置为0。 这似乎是正确的设置,但我无法使其正常工作。 如果我检查登录网页,则可以看到选择框具有以下值: 0 Default 1 Basic 2 Negotiate 4 CredSSP 5 Digest 6 Kerberos 3 不见了。 JosefZ发现3是NegotiateWithImplicitCredential根据该网页,但在Windows PowerShell上5.1.15063.966对我说,名称/值从枚举失踪。 如果设置defaultAuthenticationType为数字,则网页默认为新选项: 7 Admin Specified 我尝试了3和4,但都没有一个。使用Kerberos登录,不使用CredSSP。 如果我手动选择CredSSP,它将按预期工作。 如果我将defaultAuthentcationType字符串设置为CredSSP,则不会Admin Specified显示任何选项,并且它将Default再次默认设置为,并且仍使用Kerberos身份验证。 有人能成功设置吗?Web结果一直非常缺乏。

3
无法使CredSSP身份验证在PowerShell中工作
在尝试使用远程处理创建PowerShell脚本时,我遇到了我认为是双跳问题。在那篇文章中,Perriman简要描述了该问题以及解决该问题的具体步骤(如果您知道这些命令,这几乎是微不足道的,但是对于像我这样不那么熟悉的人来说,这些信息是非常宝贵的!)。 我Enable-WSManCredSSP Server在Win7服务器上运行Enable-WSManCredSSP Client –DelegateComputer <FQDN of the server>时没有发生任何事故,但是尝试在Win7客户端上运行时产生此错误: Enable-WSManCredSSP : The client cannot connect to the destination specified in the request. Verify that the service on the destination is running and is accepting requests. Consult the logs and documentation for the WS-Management service running on the destination, most commonly …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.