Note: Please note that the views, opinions, and statements expressed are solely my own and are provided in my personal capacity. They do not represent, reflect, or bind the Aruba HPE Networking in any manner.
Original Message:
Sent: Feb 20, 2026 10:06 AM
From: erichflynn
Subject: Lost on Clearpass Certificate Upload API
Actually it looks like there was an idea that has strong support that is pretty much the same from 2018.
---------------------------------------------
This email (including any attachments) is for the sole use of the intended recipient(s) and may contain confidential information. If you are not the intended recipient, any review,
dissemination, or copying of this email, any attachments, or the information contained herein is
prohibited. If you have received this email in error, please immediately notify the sender and
delete this email from your computer.
---------------------------------------------
Original Message:
Sent: 2/20/2026 8:55:00 AM
From: Pavan Arshewar
Subject: RE: Lost on Clearpass Certificate Upload API
Please file feature request at https://innovationzone.arubanetworking.hpe.com/ and follow up with Aruba SE.
------------------------------
Pavan Arshewar
Technical Lead Aruba ERT
If my post addresses your query, give kudos!
Note: Please note that the views, opinions, and statements expressed are solely my own and are provided in my personal capacity. They do not represent, reflect, or bind the Aruba HPE Networking in any manner.
Original Message:
Sent: Feb 19, 2026 03:01 PM
From: erichflynn
Subject: Lost on Clearpass Certificate Upload API
I didn't realize customers were not exposing Clearpass to public networks, we need to for radius, jamf, signature updates and a few other services.
Honestly, I don't have a solution. ACME2 seems to be the direction we have to use, but our hands have been forced by the PKI Consortium (I think that was deciding body) and manually replacing certificates every 30 days is not a solution.
My hope would be that HPE would develop a solution with the Certificate Providers and make it a product deliverable.
Original Message:
Sent: Feb 19, 2026 12:59 PM
From: Herman Robers
Subject: Lost on Clearpass Certificate Upload API
The problem is that there is no single way of requesting/renewing a certificate. There is ACME, but the most obvious method of requesting a certificate requires the system to be reachable over the internet, which normally is not the case for ClearPass and even not recommended to put it out on the internet. Other methods require control over DNS, which is not practical/obvious either. Many certificate requests are still being done manually. For cloud products it's more trivial and also happening. In premises are different.
If you have a good idea on how to implement the certificate renewal, please share the thoughts.
------------------------------
Herman Robers
------------------------
If you have urgent issues, always contact your HPE Aruba Networking partner, distributor, or Aruba TAC Support. Check https://www.arubanetworks.com/support-services/contact-support/ for how to contact HPE Aruba Networking TAC. Any opinions expressed here are solely my own and not necessarily that of Hewlett Packard Enterprise or HPE Aruba Networking.
In case your problem is solved, please invest the time to post a follow-up with the information on how you solved it. Others can benefit from that.
Original Message:
Sent: Feb 13, 2026 07:11 AM
From: erichflynn
Subject: Lost on Clearpass Certificate Upload API
The real question should be why does he need to write an automation script. This should be an HPE deliverable.
Certificate automation with the new issuance and expiriy standard needs to be delvivered by the vendors.
Original Message:
Sent: Feb 12, 2026 12:28 PM
From: Herman Robers
Subject: Lost on Clearpass Certificate Upload API
You may have more success on the Automation forum on this community as it looks like your are trying to use Ansible.
Based on the error message, I think the problem is that ClearPass does not trust the server certificate of the URL where you try to download the certificate from.
The pkcs12_file_url would be the location for the pkcs12 file holding the ClearPass HTTPS(RSA) server certificate; the pkcs12_password would be the password for that file. Assuming the Ansible module sends the correct API call, ClearPass would retrieve the pkcs12_file_url and for that the URL must be trusted, so the HTTPS certificate of the server that you are downloading from must be trusted by ClearPass, meaning the RootCA for that certificate needs in the Trust List enabled and have purpose 'Other'.
------------------------------
Herman Robers
------------------------
If you have urgent issues, always contact your HPE Aruba Networking partner, distributor, or Aruba TAC Support. Check https://www.arubanetworks.com/support-services/contact-support/ for how to contact HPE Aruba Networking TAC. Any opinions expressed here are solely my own and not necessarily that of Hewlett Packard Enterprise or HPE Aruba Networking.
In case your problem is solved, please invest the time to post a follow-up with the information on how you solved it. Others can benefit from that.
Original Message:
Sent: Jan 15, 2026 04:00 PM
From: Eric Dresser
Subject: Lost on Clearpass Certificate Upload API
- name: PUT Server Cert
ansible.builtin.uri:
url: https://{{server}}/api/server-cert/name/{{UUID}}/HTTPS(RSA)
headers:
Accept: application/json
Authorization: Bearer {{api_token.json.access_token}}
body_format: json
body:
certificate_url: What Is this?
pkcs12_file_url: Also What is this?
pcks12_passphrase: Know what this is :)
validate_certs: no
method: PUT
I'm trying to upload a new certificate via API from my local machine (before we move the code into something else)
I'm completely lost on what the body is asking for.
I tried putting in the website address for clearpass on certificate_url and the path to where my local computer is storing the new certificate
I'm getting this as a response.
Any know what I'm supposed to be doing?
-------------------------------------------