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 to host (you can download to your desktop and run from your browser).
Example Workflow¶
- Open the helper app in a browser.
- Upload your disconnected licensing JSON payload.
- Paste in your license JWT.
- Click on “Generate curl” and copy the curl command (either for Mac/Linux/Windows).
- Run the command from your terminal to produce license-manifest-YYYY-MM-DD.json (will be in the same directory that you run the curl command from).
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"