F5 Big-IP VE 不正确的负载均衡器操作

网络工程 负载均衡器 f5
2022-02-18 15:42:33

我有 F5 Big-IP VE 版本 13.1.1

LTM 配置:

  • 3个节点

  • 使用 LB 方法循环池

  • 虚拟服务器

LB(Round Robin)在网页请求15秒后切换节点。如果请求更频繁(例如,每秒一次),则节点不会切换。

  > curl Virtual Server
  StatusCode        : 200
  StatusDescription : OK
  Content           : <!DOCTYPE html>
                      <html>
                      <body>

                      <h1>This is BIGIP Node1</h1>

                      </body>
                      </html>

  RawContent        : HTTP/1.1 200 OK
    ....

马上再试一次

> curl Virtual Server
  StatusCode        : 200
  StatusDescription : OK
  Content           : <!DOCTYPE html>
                      <html>
                      <body>

                      <h1>This is BIGIP Node1</h1>

                      </body>
                      </html>

  RawContent        : HTTP/1.1 200 OK
    ....

15 秒后

> curl Virtual Server
  StatusCode        : 200
  StatusDescription : OK
  Content           : <!DOCTYPE html>
                      <html>
                      <body>

                      <h1>This is BIGIP Node3</h1>

                      </body>
                      </html>

  RawContent        : HTTP/1.1 200 OK
    ....

为什么 F5 Big-IP 不随每个请求切换节点?

0个回答
没有发现任何回复~