Windows Server 2016 を実行する 5 つの Azure 仮想マシンがあります。仮想マシンは Web サーバーとして構成されています。 仮想マシンに負荷分散サービスを提供する LB1 という名前の Azure ロード バランサーがあります。 訪問者はリクエストごとに同じ Web サーバーによってサービスを受けるようにする必要があります。 何を設定すればよいでしょうか?
正解:D
With Sticky Sessions when a client starts a session on one of your web servers, session stays on that specific server. To configure An Azure Load-Balancer For Sticky Sessions set Session persistence to Client IP or to Client IP and protocol. On the following image you can see sticky session configuration: Note: - Client IP and protocol specifies that successive requests from the same client IP address and protocol combination will be handled by the same virtual machine. - Client IP specifies that successive requests from the same client IP address will be handled by the same virtual machine. Reference: https://cloudopszone.com/configure-azure-load-balancer-for-sticky-sessions/