Troubleshooting a Pure1 Connection with the vSphere Plugin
In the 4.2.0 release of the vSphere Plugin, we added Pure1 integration which provided additional insight into your Pure Storage and vSphere Environment. In order to use this though, you need to connect the plugin with Pure1 of course. The authentication method is based on a process which involves something called a JSON Web Token. This is a secure option, but a bit more involved than a user name and password. I made the process of generating this fairly easy, but if something goes wrong you get a fun error message like below:
Hmm.
So we are working on improving the error handling directly in the plugin for Pure1 authentication (which was a major oversight on my part). In the meantime, let’s troubleshoot.
Verify Network Connectivity
This is really step one. Does your vCenter have TCP port 443 access to api.pure1.purestorage.com?
SSH into vCenter and run:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
nc api.pure1.purestorage.com443 -zv
nc api.pure1.purestorage.com 443 -zv
nc api.pure1.purestorage.com 443 -zv
If this fails, you know that there is a network problem.
Verify the JWT
Okay if that is good it is probably something to do with your JWT. Before you walk through this (though it is pretty quick), make sure you have removed all white space from your JWT (like new lines ) by pasting it into notepad or something and making it one line.
If that doesn’t fix the problem, move forward:
1). SSH into a Linux host (or, ideally, your vCenter)
2). Store the JWT into a variable in bash:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
JWT=eyJhbGciOiJSUzI1NiIsI<etc. etc. etc.>EopDv-A
JWT=eyJhbGciOiJSUzI1NiIsI<etc. etc. etc.>EopDv-A
JWT=eyJhbGciOiJSUzI1NiIsI<etc. etc. etc.>EopDv-A
If it throws an error, make sure there are no spaces between the around the equals sign (so JWT=ey…. not JWT = ey…..). You can verify it looks good by running:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
echo $JWT
echo $JWT
echo $JWT
3). Paste the entire thing below with no changes in and hit enter:
If you want to play with the Pure1 REST you can take the access token and add “Authorization: Bearer ” before it and pull information from Pure1. This would be a GET on arrays for instance:
I ended up having to bypass this communication from HTTPS inspection on our firewall/URL filter. Oddly enough, i had to bypass it from pure1.purestorage.com. I figured api.pure1.purestorage.com would do the trick, but i didn’t see any traffic going to that URL
It would authenticate, but I’m still having issues pulling data. I tried adding the API.pure1.purestorage url to the bypass but the plug-in still isn’t pleased. The upside is that Pure1 saw it hit the JWT when I attempted it with the Pure1.purestorage.com url bypassed from HTTPS inspection.
To give background, it has to do with the interruption in the cert chain.(per curl errors and past experience) I’ve seen it before with curl, git and any HTTPS process that requires a valid root CA. I can’t speak for all of them, but our HTTPS inspection engine pins the server side cert to it’s own root cert in the chain.
I see three fixes that don’t involve bypassing URLs from HTTPS inspection. 1) Install the HTTPS inspection cert in the VCSA cert store 2) Find a way for the plug-in to allow server side certs that aren’t validated against the cert store. 3) Install the cert on a cert store specific to the plug-in. One of those options isn’t pretty and the other two require altering the plug-in.
Thank you! If you use Slack, we have a #ask-vsphereplugin channel too you can use, https://codeinvite.purestorage.com/ We can chat there as well, it is harder for me to give quick responses here. And others keep an eye on that channel too. Of course feel free to continue to use this here, just bear in mind I might be slow lol
Is there any mechanism to allow this to happen through a proxy? All of my managed systems live behind a proxy configuration, vCenter is configured to use it, and other HTML5 plug-ins are able to download as expected.
I ended up having to bypass this communication from HTTPS inspection on our firewall/URL filter. Oddly enough, i had to bypass it from pure1.purestorage.com. I figured api.pure1.purestorage.com would do the trick, but i didn’t see any traffic going to that URL
Ah interesting, might be something to do with the root address. I will verify this and see that it is documented. Thank you!
It would authenticate, but I’m still having issues pulling data. I tried adding the API.pure1.purestorage url to the bypass but the plug-in still isn’t pleased. The upside is that Pure1 saw it hit the JWT when I attempted it with the Pure1.purestorage.com url bypassed from HTTPS inspection.
To give background, it has to do with the interruption in the cert chain.(per curl errors and past experience) I’ve seen it before with curl, git and any HTTPS process that requires a valid root CA. I can’t speak for all of them, but our HTTPS inspection engine pins the server side cert to it’s own root cert in the chain.
I see three fixes that don’t involve bypassing URLs from HTTPS inspection. 1) Install the HTTPS inspection cert in the VCSA cert store 2) Find a way for the plug-in to allow server side certs that aren’t validated against the cert store. 3) Install the cert on a cert store specific to the plug-in. One of those options isn’t pretty and the other two require altering the plug-in.
Do you mind opening a ticket with Pure support with these requests? I will ensure eng looks at it
Just opened the ticket!
Thank you! If you use Slack, we have a #ask-vsphereplugin channel too you can use, https://codeinvite.purestorage.com/ We can chat there as well, it is harder for me to give quick responses here. And others keep an eye on that channel too. Of course feel free to continue to use this here, just bear in mind I might be slow lol
Is there any mechanism to allow this to happen through a proxy? All of my managed systems live behind a proxy configuration, vCenter is configured to use it, and other HTML5 plug-ins are able to download as expected.