How to authenticate SSRS externally using automatic NTLM credential passing?

橙三吉。 提交于 2019-12-06 06:11:03

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