Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Brian_Saunders1's avatar
Brian_Saunders1
Icon for Altostratus rankAltostratus
11 years ago
Solved

Export GTM Configuration to Text File

Hello all,   Trying to go through our GTM Wide IPs and confirm whether or not the " Verify Virtual Server Availability" check box is selected. I figured I could export the config via SCF and then...
  • Cory_50405's avatar
    11 years ago

    Verify virtual server availability is a checkbox in the GTM pool config. If you want to get just the pools that have this setting enabled, do this from bash shell:

    tmsh list gtm pool all-properties one-line | grep "verify-member-availability enabled" > /var/tmp/poolswithverify.txt
    

    This will output those pools and their configurations to the text file specified in the path.