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)
jcrubaugh45_208
Cirrus
May 25, 2018thanks, ill give this a go, i already see based on what your showing me, i was assuming i could get some data only making 1 call and i needed more.
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