python bigsuds - Reverse Lookup (Pool -> Virtual Server)

Problem this snippet solves:

This python bigsuds script prints the list of virtual servers using a specific pool.

How to use this snippet:

rlookup-pool.py <hostname> <username> <poolname>

This will only search the Common partition. This also does not check for policies or iRules that may change the value of pool.

Code :

#!/usr/bin/env python

__author__ = 'buzzsurfr'
__version__ = '0.1'

#  Standard Library
import sys
import re

#  Related Third-Party
import getpass

#  Local Application/Library Specific
import bigsuds

if len(sys.argv) < 4:
print "\n\n\tUsage: %s host user pool" % sys.argv[0]
sys.exit()

#  Get login password from CLI
userpass = getpass.getpass()

#  Connect to BIG-IP
b = bigsuds.BIGIP(sys.argv[1], sys.argv[2], userpass)

pool = sys.argv[3]
if len(pool) < 8 or pool[:8] != '/Common/':
pool = '/Common/'+pool
print "Virtual Servers using Pool "+pool

#  Get list of pools and pool members
virtual_servers = b.LocalLB.VirtualServer.get_list()
vs_pools = b.LocalLB.VirtualServer.get_default_pool_name(virtual_servers)

#  Iterate through pool member list (has a list of members per pool referenced) looking for node
for i, vs_pool in enumerate(vs_pools):
    if pool == vs_pool:
      print "\t"+virtual_servers[i]

Tested this on version:

11.5
Updated Jun 06, 2023
Version 2.0

Was this article helpful?

No CommentsBe the first to comment