How to authenticate SSRS externally using automatic NTLM credential passing?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-10 10:57:22

问题


I am attempting to set up our SSRS server to authenticate over the internet using user entered NTLM credentials with the Automatic Logon setting in IE.

The result so far has been the generic 'Internet Explorer Cannot Display the Webpage' error when attempting to navigate to the report manager or report server. I am not getting much relevant information off of google.

Has anyone else encountered this edge case? Any suggestions?


回答1:


SSRS will fail to authenticate over the internet with automatic NTLM credential passing if the <RSWindowsNegotiate/> authentication type is present in the <Authentication> section of the rsreportserver.config file.

Comment out the <RSWindowsNegotiate/> Authentication Type to resolve this issue.

(C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config)

    <Authentication>
    <AuthenticationTypes>
    <RSWindowsNTLM/>
    <!-- <RSWindowsNegotiate/> -->   
    </AuthenticationTypes>
    <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
    <RSWindowsExtendedProtectionScenario>Proxy</RSWindowsExtendedProtectionScenario>
    <EnableAuthPersistence>true</EnableAuthPersistence>
    </Authentication>


来源:https://stackoverflow.com/questions/15348649/how-to-authenticate-ssrs-externally-using-automatic-ntlm-credential-passing

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!