web-dev-qa-db-ja.com

F5プールを作成し、それに複数のヘルスモニターを割り当てる

SERVER1SERVER2の2つのノードを作成するとします。

create ltm node SERVER1 description SERVER1 address 10.1.1.1%200
create ltm node SERVER2 description SERVER2 address 10.1.1.2%200

ノードを追加した後、プールを作成して、1つだけではなく複数のヘルスモニターを割り当てたいと考えました。私のスクリプトには次のようなものがあります

create ltm pool some_pool_1 members add { SERVER1:0 SERVER2:0 } monitor health_monitor_1 health_monitor_2 monitor_3 health_monitor_4 health_monitor_5

これは、health_monitor_1をスローする前に、このSyntax Error: "health_monitor_2" unknown propertyのみを割り当てます。 health_monitor_1に移動すると、SERVER1SERVER2が表示されますが、他のヘルスモニターに移動すると、ノードSERVER1SERVER2inが表示されません。プールに移動して、他のヘルスモニターを手動で割り当てる必要があります。スクリプトにcreate ltm pool some_pool_1 members add { SERVER1:0 SERVER2:0 } monitor health_monitor_1 health_monitor_2 monitor_3 health_monitor_4 health_monitor_5を変更して、プールに複数のヘルスモニターを割り当てられるようにしてくれる人はいますか?

2
sec_eng1

作成しているプールに複数のモニターを接続する場合は、それらを括弧で囲む必要があります。

create ltm pool p1 members add { 10.1.1.1:80 10.1.1.2:80 } monitor "http https"

または、2台以上のモニターを機能させたい場合:

create ltm pool p1 members add { 10.1.1.1:80 10.1.1.2:80 } monitor min 2 of { tcp http https }
2
Jason Rahm