Forum Discussion

GreenArrow_1457's avatar
GreenArrow_1457
Icon for Nimbostratus rankNimbostratus
Apr 26, 2016
Solved

What is the correct syntax for adding multiple monitors to pool for "ALL" as an availability requirement?

I know the syntax to have at least one monitor active is this: ltm pool vlan100 Fortuna { description "Jabba Pet" members { boba1:18190 { address 172.31.18.17 } boba2:1819...
  • Hannes_Rapp_162's avatar
    Apr 26, 2016

    and
    is what you're looking for.

    (tmos) create ltm pool pool_mypool_80 members add { 1.1.1.1:80 } monitor http and tcp_half_open
    (tmos) list ltm pool pool_mypool_80
    
    ltm pool pool_mypool_80 {
        members {
            1.1.1.1:http {
                address 1.1.1.1
                session monitor-enabled
                state checking
            }
        }
        monitor http and tcp_half_open
    }