Disconnected mode licensing tool¶
This page documents an optional helper app for generating a curl request for disconnected licensing telemetry.
If you want to run the helper locally as a standalone HTML file, download it directly from the docs site (i.e. right-click and “Save As” or similar in your browser):
The app runs entirely client-side and does not require a server. You can download it to your desktop and open it from your browser.
Example workflow¶
- Open the helper app in a browser.
- Upload your disconnected licensing JSON payload.
- Paste your license JSON Web Token (JWT).
- Click Generate curl and copy the
curlcommand for your platform (macOS, Linux, or Windows). - Run the command from your terminal to produce
license-manifest-YYYY-MM-DD.json. The file is saved in the same directory where you run thecurlcommand.
The curl command will look something like this:
curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer eyJhbG...." \
-d '{"report":"eyJhbG...."}' \
-o license-manifest-2026-03-10.json \
"https://product.apis.f5.com/ee/v1/entitlements/telemetry"