On Sat, Nov 19, 2022 at 4:04 PM Maxim Dounin wrote:
> Hello!
>
> On Fri, Nov 18, 2022 at 10:30:29PM -0500, Michael B Allen wrote:
>
> > NTLM over HTTP is a 3 request "handshake" that must occur over the same
> TCP
> > connection.
> > My HTTP service implements the NTLMSSP acceptor and uses the cl
Hello!
On Fri, Nov 18, 2022 at 10:30:29PM -0500, Michael B Allen wrote:
> NTLM over HTTP is a 3 request "handshake" that must occur over the same TCP
> connection.
> My HTTP service implements the NTLMSSP acceptor and uses the clients remote
> address and port like "10.11.12.13:54433" to track th
On Fri, Nov 18, 2022 at 10:30 PM Michael B Allen wrote:
> Now I want to load balance NTLM through NGINX. For this I used the
> following:
>
> upstream backend {
> ip_hash;
> server localhost:8080;
> server localhost:8081;
> }
>
> server {
> location / {
> proxy_pass http:/
Hi,
NTLM over HTTP is a 3 request "handshake" that must occur over the same TCP
connection.
My HTTP service implements the NTLMSSP acceptor and uses the clients remote
address and port like "10.11.12.13:54433" to track the authentication state
of each TCP connection.
My implementation also uses a