开发者

asp.net windows authentication to sql server

I can not seem to 开发者_StackOverflow中文版get sql server to recognize my credentials.

Asp.net recognizes me when I login but when I execute a sql command I get a login failed message.

The IIS server and SQL server are on different machines.

There are other applications the IIS server which are able to authenticate to the sql server. I believe the Active Directory settings are correct. I am investigating what I am doing differently.

I must be missing something.

  • I check the IIS settings
  • The web config is set to impersonate.

Below is the relevant information. If anyone has any idea as to what I missed or am doing wrong I would appreciate some help.

IIS Settings:

  • 'Integrated Windows authentication' is checked
  • 'Enable anonymous access" is not checked

Web Config

<authentication mode="Windows"/>
<identity impersonate="true"/>
<authorization>
   <deny users="?" />   
</authorization>

Page_Load Code:

Dim winId As IIdentity = HttpContext.Current.User.Identity
TextBoxMessage.Text = winId.Name + Environment.NewLine
Dim cnn As SqlClient.SqlConnection

Try
   Dim sql As String = "*****"

   cnn = New SqlClient.SqlConnection("Data Source=*****;Initial Catalog=****;Integrated Security=True")
   cnn.Open()

   Dim cmd As New SqlClient.SqlCommand(sql, cnn)
   cmd.ExecuteNonQuery()
   cnn.Close()

Catch ex As Exception
   TextBoxMessage.Text += ex.Message
   cnn.Close()
End Try

Output:

Domain\UserName

Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.


This is key = The IIS server and SQL server are on different machines. You're facing the classic double hop issue. Think of it in this way:

  • You access the web application under your credentials
  • IIS in this case has to present who you say you are to the SQL Server
  • IIS says, "Why hello SQL Server, I'm passing on Tony's kerberos creds, they are legit"
  • SQL Server says, "Hmmm, IIS I'm not sure I trust you, I need proof that you are trusted to present these credentials to me".

Thus once you enable delegation as mentioned by Remus, your SQL Server will trust the credentials your IIS server is presenting on your behalf.

In terms of security, under delegation, it would be wise to choose:

Trust this computer for delegation for specified services only | Use Kerberos only | and then underneath the "Services to which this account can present delegated credentials" make sure you explicitly set only the server/port you need.


You also need to enable constrained delegation:

  • Enabling Constrained Delegation
  • How To: Use Protocol Transition and Constrained Delegation in ASP.NET 2.0
  • Windows Server 2003 Constrained Delegation (IIS 6.0)


Are your ISS server and SQL Server running on the same machine?

If not, Active Directory has to be configured to allow your IIS server to impersonate your accout towards the SQL Server. See How To: Use Protocol Transition and Constrained Delegation in ASP.NET 2.0.


Long story short: IIS server should have "trusted for delegation" checkbox checked in Active Directory.


You need to set you credentials in Application Pool. - Open IIS - Select Application Pools - Enter the name, select .Net framework version and click OK - Select the new added application pool and click on Advanced Settings.. - In the Process Model section click on Identity - choose custom account and enter the AD username, password, confirm password and click OK - Select your application and in the Basic settings choose your application pool just created.

Hope this helps

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜