python bigsuds - Get or Set GTM Pool TTL
Problem this snippet solves:
This python bigsuds script will get or set GTM Pool TTLs.
How to use this snippet:
gtm_poolTTL.py < hostname> < username> gtm_poolTTL.py < hostname> < username> < pool> gtm_poolTTL.py < hostname> < username> < pool> < ttl>
Script
gtm_poolTTL.py
Code :
#!/usr/bin/env python ''' ---------------------------------------------------------------------------- The contents of this file are subject to the "END USER LICENSE AGREEMENT FOR F5 Software Development Kit for iControl"; you may not use this file except in compliance with the License. The License is included in the iControl Software Development Kit. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is iControl Code and related documentation distributed by F5. The Initial Developer of the Original Code is F5 Networks, Inc. Seattle, WA, USA. Portions created by F5 are Copyright (C) 1996-2004 F5 Networks, Inc. All Rights Reserved. iControl (TM) is a registered trademark of F5 Networks, Inc. Alternatively, the contents of this file may be used under the terms of the GNU General Public License (the "GPL"), in which case the provisions of GPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the GPL and not to allow others to use your version of this file under the License, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version of this file under either the License or the GPL. ---------------------------------------------------------------------------- ''' def get_pools(obj): try: return obj.GlobalLB.Pool.get_list() except Exception, e: print e def get_ttl(obj,pools): try: return obj.GlobalLB.Pool.get_ttl([pools]) except Exception, e: print e def set_ttl(obj,pool,ttl): try: obj.GlobalLB.Pool.set_ttl([pool],[ttl]) except Exception, e: print e if __name__ == "__main__": import bigsuds import getpass import sys # Directory location of bigsuds.py file sys.path.append(r'C:\dev') if len(sys.argv) < 3: print "\n\n\tUsage %s ip_address username" % sys.argv[0] sys.exit() a = sys.argv[1:] print "\nHey %s, please enter your password below.\n" % a[1] upass = getpass.getpass() try: b = bigsuds.BIGIP( hostname = a[0], username = a[1], password = upass, ) except Exception, e: print e if len(sys.argv) == 4: print "\n\n\tThe current ttl for pool %s is %d" % (a[2], get_ttl(b,a[2])[0]) elif len(sys.argv) == 5: set_ttl(b,a[2],a[3]) print "\n\n\tThe new ttl for pool %s is %d" % (a[2], get_ttl(b,a[2])[0]) else: pl = get_pools(b) ttls = get_ttl(b,pl) combined = zip(pl, ttls) print "\nCurrent TTLs:" for x in combined: print "\tPool %s:\t%d" % (x[0], x[1])
Published Mar 09, 2015
Version 1.0CodeCentral_194
Cirrus
Joined May 05, 2019
CodeCentral_194
Cirrus
Joined May 05, 2019
No CommentsBe the first to comment