Windows authentication (or Integrated Windows Authentication) is a process where connections to applications or external systems are automatically authenticated with the currently logged on Windows user. This functionality was first made available in Windows 2000.
0
votes
0answers
15 views
Apache 2.4 user authentication against Windows 2008 domain
We used Apache 2.2.x with SSPI module to authenticate against a windows domain.
I am aware that the module is not udpated to work with Apache 2.4.
So how people who needs authentication against a ...
2
votes
2answers
44 views
How come identical name and authentication between two windows PCs on same network works?
My Experiment
So I set up a simple network with Two computers. Both on the same Work group.
I created a LOCAL user 'A' with pasword 'A' in Computer 1.
And then I created an identical named LOCAL ...
0
votes
0answers
31 views
IIS identified a user as a user on another domain when he accessed an ASP.NET 4.0 page.
An IIS 6 Server on Windows Server 2003 has a virtual directory configured with anonymous access disabled and Integrated Windows authentication enabled. The directory in which the page exists restricts ...
0
votes
1answer
55 views
Company Wide Windows Auth with Chrome and Firefox
I know that we can allow Firefox to allow passing through of Windows credentials by editing the following about:config settings
network.negotiate-auth.trusted-uris
...
0
votes
0answers
14 views
Windows authentication failure in IIS for only one user
I have a server running Windows SBS 2011, it acts as a Domain Controller running a domain of around 60 users. I have an intranet on the server in IIS with Windows Authentication. The intranet uses AD ...
0
votes
0answers
31 views
IIS: NTLM authentication works, Negotiate does not
We develop a web application that is installed on-site on customers' servers. In the past months, we've had a curious problem occurring every now and then. We also know how to workaround it, but I'm ...
1
vote
1answer
91 views
The trust relationship between the primary domain and the trusted domain failed
Scenario: We have an application server (IIS 7.0, Windows 2008 R2) and a seperate database server (SQL 2008) for both our test and production environments (so 4 servers total). Our application server ...
0
votes
1answer
85 views
User authentication — username mismatch in IIS in ASP.NET application
Last week, an employee's Active Directory username was changed (or a new one was created for them). For the purposes of this example, let's assume these usernames:
Old: Domain\11111
New: Domain\22222
...
3
votes
2answers
69 views
Why can a user log in via more than one UPN
I've changed the for all users UPN suffix of a company from us.mycompany.local to mycompany.com in order to use claims aware applciations. In testing before the change I discovered that even if I ...
0
votes
1answer
54 views
Cross domain UNC Paths - Securing Credentials
I have a folder on a Remote Domain:
\DomainRemote\Shared_Folder
And a process on a local Domain which needs to access said share:
Trusts exist between the domains - but only authenticated users ...
0
votes
0answers
62 views
IIS 7.5 selectively overwrites my error response page
Using Windows 2008r2, IIS 7.5, I have an application using Windows Integrated Authentication (WWW-Authenticate: NTLM, Negotiate).
In my ASP.NET MVC code, I am overwriting the IIS error page ...
1
vote
1answer
72 views
Powershell - how to Start-Job with an ActiveDirectory credential
My client controls access to their database with ActiveDirectory. I would like to do the following:
$cred = Get-Credential
Start-Job -Credential $cred {
#do some stuff with the db
}
This works ...
0
votes
0answers
67 views
access to samba share, authenticating via PAM
I would like to access an authenticated samba share -- but the authentication needs to go though PAM and then though LDAP (Active Directory), as suggested in another question. The linux box is not ...
1
vote
1answer
48 views
IIS - login by domain name is ok; login by IP address fails
I configured IIS server to use Windows authentication.
On a client computer, I used IE to open a website of IIS by
domain name - this resulted in automatic login.
IP address - a dialog box appeared ...
0
votes
0answers
58 views
MS SQL 2008 - Can I use Windows Authentication to connect from a Mac
I have been using Navicat SQL on Mac (Snow Leopard) to connect to MS 2005 via "Basic Auth" and all is good.
However the DB is now being migrated to MS 2008 and try as I might I cant get on via Windows ...
3
votes
1answer
128 views
Workstation authentication against wrong AD server in multi-site configuration
Having a problem which I've seen before but haven't yet found a solution to, I've got multiple AD sites in one domain physically separated and logically separated by different subnets and AD sites.
...
1
vote
0answers
125 views
IIS, SQLServer, Google Chrome and Windows Authentication
I'm searching the internet for almost 4 days now and I'm stuck.
I've created a simple ASP MVC4 Intranet website and I have deployed it to server called: iis. That computer is inside the same domain ...
0
votes
0answers
165 views
Oracle UPK: HTTP request is unauthorized with client scheme 'Negotiate'
This is my first post. I have searched high and low for a possible solution to this, but so far have come up empty. Oracle support also has not been very helpful (yet anyway).
Below is an excerpt ...
0
votes
1answer
199 views
How do I log in, using SSPI, to SQL Server 2008 R2 on a server in one workgroup from a workstation in another?
We're having trouble connecting to our SQL Server (2008 R2) via SSPI.
Our team has recently moved from a domain-based setup to a decentralised workgroup-based setup. Each developer has access to a ...
0
votes
2answers
293 views
Getting http 403 error when accessing website from remote client
I have created an asp.net website that is to be accessed from client browsers running on the same domain.
I've hosted the site on IIS 7.5
I have disabled Anonymous Authentication and Enabled Windows ...
0
votes
1answer
48 views
Authenticate to a machine not in the domain
I set up a windows server 2003 in a VM to test some code. The prod server has IIS6 and since I have Win 7 I can only install IIS 7 in my dev machine.
Obviously I didn't add the machine to my company ...
2
votes
1answer
235 views
Kerberos authentication failing with 401
We have a .NET MVC 3 application deployed in IIS 7 on our Windows 2008 server (let's call it PROD). The application has Anonymous and Windows Authentication enabled - all others are disabled. The ...
0
votes
2answers
76 views
Windows Authentication over diferent domains
In my company we have a very complex infrastructure.
We are from a subcompany, and we have a Active Directory Domain, configured in our PC's. Otherwise, all of us, have a Directory account for main ...
0
votes
0answers
55 views
iSCSI Authentication Windows Server 2012
When trying to specify the account credentials that the iSCSI initiator will use on Windows Server 2012, I cannot find WTVdsProv or WTSnapshotProvider under Component Services. This prevents me from ...
0
votes
2answers
84 views
Linux workstation and Active Directory authentication
I read a few articles regarding "How to Authenticate Linux Clients with Microsoft Active Directory"
My question before I do it: what will happen to Notebooks that try to login when the Active ...
1
vote
0answers
155 views
IIS reverse proxy with Windows Auth throwing intermittent 502 errors
I have set up a web site (www.mysite.com) on IIS to provide SSL and Windows Auth, and to forward all HTTPS requests to another server (BIOS name: internalserver; port 2080). The rule specifying this ...
4
votes
1answer
492 views
IIS 7.5: How to configure custom Authentication Error page with Windows Authentication. 401 header problems
I have a php website running under IIS 7.5. The site is secured by Windows authentication and that works fine:
When users go to the site, they are asked for username/password and get through if ...
0
votes
3answers
78 views
Why Does A/D Account Need SQL Server Login?
I need some help on understanding the differences between Windows and SQL Server Authentication:
We have a SQL Server 2008 set to SQL Server and Windows Authentication Mode.
There is one A/D user -- ...
2
votes
3answers
72 views
Does active directory log authentication success/failure with the OS?
For example, if I use an AD account to login on Windows 7 and then Windows 8, will I be able to tell in logs setup by default?
If not by default, how would I set this logging up?
0
votes
1answer
102 views
Inter-connect two active directories for sharepoint authentication
I have 1 server with windows 2003 which is our office's domain controller, and other server with windows server 2008 in another office.
The domain names are different, and what i need to do, is ...
1
vote
1answer
536 views
Microsoft Application Request Routing with Windows Authentication
I'm running into a problem trying to get Windows Authentication working in an environment that uses Microsoft Application Request Routing and was hoping someone might be able to help.
The problem I'm ...
0
votes
1answer
66 views
Using Windows Authentication accross Domains when using VPN?
Is it possible to use Windows Authentication for users who are logged into their computer on one domain (ABC) on a particular AD system, for services that are on a second domain (XYZ) on a second AD ...
0
votes
1answer
500 views
Logging in user in Windows 2008 server using LogonUser fails on LogonType LOGON32_LOGON_SERVICE
I am using LogonUser function to logon an account to Windows 2008 R2 server on a domain with clusterring.
When using LOGON32_LOGON_INTERACTIVE as LogonType, I successfully login.
When using ...
5
votes
1answer
145 views
Risks of Kerberos Delegation
I've been spending hours upon hours trying to learn and understand Windows Authentication, Kerberos, SPNs, and Constrained Delegation in IIS 7.5. One thing I just don't get is why it is "risky" to ...
1
vote
3answers
922 views
Windows authentication to IIS on local server with fully qualified url
I have a web application set up in IIS 7 configured with Windows Authentication. I can authenticate to the machine via it's fully qualified url from any other machine and it uses the proper Domain. ...
0
votes
1answer
246 views
Restricting access to a website on IIS with groups
I'm trying to set up our websites to only allow access from users in certain AD groups using windows authentication but i can't seem to make it work. I've tried using IIS's authorization and ...
0
votes
1answer
165 views
Under which circumstances can a *local* user account access a remote SQL Server with a trusted connection?
One of our customers has the following configuration:
On the domain controller, there's an SQL Server.
On his PC (WinXP), he logs on with LocalPC\LocalUser.
In Windows Explorer, he opens ...
3
votes
1answer
280 views
Intranet website - getting a login box although I have configured Windows Authentication in IIS
In a Windows AD domain environment (MYDOMAIN with DNS suffix mydomain.local), I have a server with an Intranet website, that runs on IIS 7.5. I have disabled all authentication types except Windows ...
1
vote
1answer
510 views
Windows authentication failure between multiple domains (sites)
I have just rolled out a new Intranet company wide - the company has 6 UK sites, each has a local domain called (for example) london.local, derby.local, thatlotupnorth.local etc etc, and each has its ...
2
votes
1answer
146 views
Windows Service and Group Policy unable to access network share on Win2008 Domain
I have one computer on my domain that has suddenly stopped receiving software updates via group policy. Domain logins still work, and group policy on the machine is still being updated, so it knows ...
0
votes
1answer
59 views
what to do with ms sql error 40 “”
I had no problem with my sql server and management studio yesterday, but today it does not connect and show me this error:
A network-related or instance-specific error occurred while
...
1
vote
1answer
133 views
Windows authentication and multiple prompts
I currently have two IIS websites with windows authentication turned on. Internally on my network when you connect to them you're authenticated seamlessly and logged on. Externally you are prompted to ...
0
votes
0answers
207 views
SPNEGO using mod_auth_sspi stopped working, 500 error
I've been using mod_auth_sspi 1.0.4 and apache 2.2.9 on Windows Server 2003 for some time now. It's used as an SVN server. It's been quite stable. For some reason when we moved from windows Server ...
1
vote
1answer
217 views
How to login to VisualSVN Server (with Single Sign-On enabled) under other user than the currently logged one to Windows machine?
If you have Integrated Windows Authentication as the only authentication type enabled in VisualSVN Server you don't get any login / password prompts.
You may find yourself stuck and confused if ...
-7
votes
1answer
98 views
networking and authentication
I installed a RADIUS server in my network (Windows 2008) and Active Directory which contains different users; I also have an access point (tp_Link) authenticated on RADIUS server. I am using Windows ...
2
votes
2answers
590 views
Windows authentication to SQL Server via IIS and PHP
We're running a PHP 5.4 application on Server 2008 R2. We would like to connect to a SQL Server 2008 database, on a separate server, using Windows authentication (must be Windows authentication--the ...
0
votes
1answer
168 views
Adding a W2008 Authenticating Server to existing W2003 Domain?
I have an existing W2003 Domain, simple setup with one DC and a SQL Server (approx 100 users). There are issues with Windows 7 Clients and login scripts and we're now seeing much greater numbers of ...
0
votes
4answers
335 views
IIS Windows Authentication except for local machine
I have a PHP site (Default Web Site) and an ASP.NET site (application under the Default Web Site) running together.
I have set up Windows Authentication for the Default Web Site and it's fine. The ...
1
vote
1answer
308 views
How to trust a non Domain PC over a VPN connected via a Domain Account for SQL Windows Authentication
We are trying to enable a windows login to SQL Server from an untrusted laptop.
The SQL Server has been enabled to allow the domain account to login and browse the data
When a domain user connects ...
1
vote
1answer
284 views
Upgrade Ubuntu 11.10 to 12.04: Apache not working anymore
I upgraded Ubuntu Server from 11.10 to 12.04 LTS. Now Apache is not working properly anymore. I'm using the module AuthenNTLM and that seems to be causing the issue. Apache Error log:
[1556] ...
