Forum Discussion
jcrubaugh45_208
Cirrus
May 22, 2018use python to get clientssl info
id like to query my BigIP SYSTEM and get a list of virtual servers. but only ones which have more than 1 client ssl profile applied. then print the list of virtual servers and the associated client s...
Jason_Nance
Nimbostratus
May 24, 2018Give this a try:
!/usr/bin/env python3
import pprint
from f5.bigip import ManagementRoot
mgmt = ManagementRoot('hostname', 'username', 'password')
virtuals = {}
for virtual in mgmt.tm.ltm.virtuals.get_collection():
virtuals[virtual.fullPath] = {
'partition': virtual.partition,
'name': virtual.name,
'clientssl': [],
}
for profile in virtual.profiles_s.get_collection():
if profile.context == 'clientside':
try:
pobj = mgmt.tm.ltm.profile.client_ssls_client_ssl.load(
partition=profile.partition,
name=profile.name,
)
except:
Not a client ssl profile
pobj = None
if pobj:
virtuals[virtual.fullPath]['clientssl'].append({
'partition': profile.partition,
'name': profile.name,
})
If we didn't find more than 1 clientssl profile delete the virtual
server from the list (well, dict) of virtuals
if len(virtuals[virtual.fullPath]['clientssl']) < 2:
del(virtuals[virtual.fullPath])
pprint.pprint(virtuals)
Jason_Nance
Nimbostratus
May 30, 2018I wrote that code against 11.6.0 HF5. There may be slight differences if you're running a different version. I would try removing the if/del block to see if any data comes back. If so, it may be that we're just not on the same page regarding what you're trying to pull.
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