Jerome Thibaud
Jerome Thibaud

Reputation: 477

F5 LTM config through tmsh - At least one monitor

f5-LTM version 11.6

Hi, I'm looking for the syntax to create a pool via tmsh with 2 monitors (monitor_A, monitor_B) with 'Availability Requirement' set to 'At Least...' '1' Health Monitor(s)

checked https://support.f5.com/kb/en-us/products/big-ip_ltm/manuals/product/bigip-tmsh-reference-11-6-0.html to no avail. It only shows the following syntax: create pool ... monitor [name]

thanks in advance

Upvotes: 1

Views: 2518

Answers (1)

Jason Rahm
Jason Rahm

Reputation: 710

Here's an example:

tmsh create ltm pool mypool \ monitor min 1 of {http https} \ members add { 192.168.103.10:80 192.168.103.11:80}

Upvotes: 2

Related Questions