The following command uploads a custom SSO image set file called Custom_Image_Set.tar.

This command requires a file upload. In this example, the cURL -X POST and--data-binary options are used to specify the file to be uploaded to the LoadMaster:

Situation before upload:

The listssoimages command can be used to list any existing custom SSO image sets that are currently installed on the LoadMaster:

curl -k "https://bal:1fourall@20.200.25.100/access/listssoimages"

Response:

<Response stat="200" code="ok">
<Success>
<Data>
<Imagesets></Imagesets>
</Data>
</Success>
</Response>

The following command uploads the custom SSO image set:

curl -X POST --data-binary "@Custom_Image_Set.tar" -k "https://bal:1fourall@20.200.25.100/access/ssoimages"

Response:

<?xml version="1.0" encoding="ISO-8859-1"?>
<Response stat="200" code="ok">
<Success>Custom image sets installed</Success>
</Response>