Re: Load Balancing NTLM over HTTP with NGINX

2022-11-19 Thread Michael B Allen
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

Re: Load Balancing NTLM over HTTP with NGINX

2022-11-19 Thread Maxim Dounin
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

Re: Load Balancing NTLM over HTTP with NGINX

2022-11-19 Thread Michael B Allen
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:/

Load Balancing NTLM over HTTP with NGINX

2022-11-18 Thread Michael B Allen
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