Forum Discussion
elastic_82555
Nimbostratus
Sep 24, 2013Retrieving VS, pool, and nodes from F5
Hi,
Using Chef extensively internally, and now would like to take all the node ip's(hostnames) out of chef, then programatically(using RESTful) interface, query the F5, to retrieve the nodes, pool...
- Oct 09, 2013
Example Python code:
try: logging.info("Connecting to BIG-IP and pulling statistics...") b = bigsuds.BIGIP(hostname=ltm_host, username=user, password=password) logging.info("Requesting session...") b = b.with_session_id() except bigsuds.Connecti , detail: logging.critical("Unable to connect to BIG-IP. Details: %s" % pformat(detail)) sys.exit(1) logging.info("Setting recursive query state to enabled...") b.System.Session.set_recursive_query_state(state='STATE_ENABLED') logging.info("Switching active folder to root...") b.System.Session.set_active_folder(folder="/")
elastic_82555
Nimbostratus
Sep 24, 2013From withing tmsh, the pool can be retreived as follows:-
list ltm pool Myapp_as.app/Myapp_as_pool
However, this syntax does not seem to work via the RESTful interface, ie...
curl -k -u admin:password -H "Content-Type: application/json" -X GET https://192.168.1.1/mgmt/tm/ltm/pool/Myapp_as.app/Myapp_as_pool |python -m json.tool
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects