Forum Discussion
Brian_Saunders1
Altostratus
Jun 25, 2014Export 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...
- Jun 26, 2014
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.
Colin_Walker_12
Sep 27, 2007Historic F5 Account
If you're not using persistence, then load balancing doesn't depend on IP information to start. A simple Round Robin load balancing method would simply send each successive request to the next server in the pool, regardless of the IP that request came from.
Colin
- Martin_MachacekOct 14, 2005Historic F5 AccountGreg,
rule name_check { if(substr(http_uri, 30) == "" and http_uri ends_with ".asp" and substr(http_uri, 1, '.') matches_regex "^[a-zA-Z0-9]+$") { use pool some_pool } else { redirect to "http://betterlucknexttime.com" } }
- Greg_Haywood_10Oct 17, 2005
Nimbostratus
Thanks for the reply, - Martin_MachacekOct 17, 2005Historic F5 AccountGreg,