syg_hira's tech-work memo

某人材サービス会社の情報共有インフラ担当のおぼえがきです。MicrosoftのEnterprise製品多め。

telnet でHTTPブラウズ(ロードバランサーでWebアプリ死活監視してるときの動作)

ロードバランサーに、Dynamics CRMのサーバをぶら下げる。

ロードバランサーからのノード死活監視は、http://hoge.local/Tenant/main.asp にアクセスさせて、HTTP 401エラーを読ませることにした。

このときのHTTP Request/Responseをtelnetで見てみる。

telnet hoge.local 80
GET http://hoge.local/Temp/main.aspx HTTP/1.0

HTTP/1.1 401 Unauthorized
Cache-Control: private
Content-Length: 0
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
WWW-Authenticate: Negotiate
WWW-Authenticate: NTLM
X-Powered-By: ASP.NET
Date: Sat, 14 Apr 2012 17:34:36 GMT
Connection: close

 

ホストとの接続が切断されました。
PS C:\Users\crmadmin>