
NSX T with PowerCLI – export loadbalancer information
How to export NSX-T loadbalancer information with PowerCLI? This question popped in my mind after a customer request to generate a list with their loadbalancers and associated virtual servers. This was not as easy as I thought! First of all, the NSX-T userinterface is not very export-friendly and i could not find a way to export data. That doesn’t matter though, because I am an automation kinda guy anyways. So I thought let’s take a look at PowerCLI for NSX-T. So I did work with PowerNSX before and I just assumed something similar would exist for NSX-T, right? Well, no. There is a module called VMware.VimAutomation.Nsxt
and it has only four commands. So I dug into the world of NSX-T with PowerCLI and share my experiences with you.
How to make it work
This might sound like captain obvious, but you never know. Connect to NSX-T.
Once connected things get interesting. This modules talks directly to the API and you will need to find out which parts contain the information you need. Personally I try to keep things simple and have some trust in the naming conventions of VMware. It is important to know which information you want to retrieve and it helps if you have any idea what the ‘top-layer’ is in the chain. Let me break this down with the original question in mind.
I want an overview of the available loadbalancers and connected virtual servers. So it makes sense that in this case my starting point would be the loadbalancer, right? Let’s give it a try. I am going to do a simple wildcard search on loadbalancer. This will produce a nice list.
Dive a little deeper
Nice! That looks like something I could use. Still, where to start? On this I am going to make an educated guess. I am looking for the loadbalancer service, so let’s go for loadbalancer.services. I want to know what is in there, so let’s do a list. To do this I will first turn the initial command into a variable and then do a list action. To dive into the information we need you will have to add results. So let’s do this. In the example I did alter the ID’s, so they are not real ID’s.
In my case there was more than one loadbalancer. So the loadbalancer display_name is something I definitely can retrieve from here with a simple foreach loop. However, this won’t give you the connected virtual servers. The only thing we can retriever here are the virtual_server_ids. So let’s do some further testing. I think I want a list of virtual server id’s per loadbalancer. How to do this? For this you will need to use the get() command and use the id of the desired loadbalancer between the brickets. How do I know it has to be the id? I use a simple trick, just by making the command fail and read the output. Like this.
The same trick applies to virtual servers. Take a look in the wildcard list above and find com.vmware.nsx.loadbalancer.virtual_servers. Turn this into into a variable, $vs_info for instance. And then try to retrieve a display name from any of the virtual_server_ids you found earlier. It would look like this.
How to turn it into a working PowerCLI script
Now, how do you stitch all this together? Well, this is actually quite simple. Once you know how to retrieve information from the id’s, possibilities are endless. I decided that I want an overview of each Virtual Server per loadbalancer. When applicable each server has to list: Virtual Server, Virtual Server IP, Virtual Server port, Virtual Server Default Pool Member Port, Pool Name, Application Profile ID, SSL Profile ID, Certificate, Virtual Server Enabled. Then I want to export this to a CSV.
This seems quite a list, the code to do this however is remarkably short. Let’s see what I did.
This wil create a CSV file with all the information I need. For readability to my customer I then can open it in Excel and turn the data into a good looking table with headers and search option. Pretty cool!
Ofcourse there are many options possible and routes to take. This code is focussed on the loadbalancer, but it doesn’t have to be just that. It’s even possible to create, I recommend reading the the examples that come with the module commands.
Conclusion
In my previous blog post I promised to write something technical about kubernetes, don’t worrry, that is still in the pipeline! This however came in between. I couldn’t find a whole lot on this on the internet and since I had good fun playing around with it I decided to make it a post. It’s a fun way to discover NSX-T with PowerCLIand I can recommend trying this out. Thanks for reading!
Is there a way to import the exported data,,, like to another site?
Hi, it probably depends what you want to export. Personally I would not import data with UUID’s and sofort into another site. If for example you want to import a list of names then I am pretty sure you can do that. Most ‘GET’ commands also have ‘POST’ commands. Just be aware though what you are doing, it’s quite possible to break an installation. If you are looking for migration options or nsx-t information in general I can highly recommend the blogs on this site: https://blog.redlogic.nl/en/nsx-t-move-security-policy-after-v2t-migration , I have linked to a blog that might help you in playing around… Read more »