Authenticate the storage system

Deploy Universal Replicator using REST API with 25G iSCSI

Version
Audience
anonymous
Part Number
MK-24VSP1BQ011-00
ft:lastEdition
2026-07-01
  1. Authenticate to the primary storage system and generate a token for REST API requests.
    Command:
    curl -k -H "Accept:application/json" -H "Content-Type:application/json" -u maintenance:<maintenance-user-password> -X POST 
    https://<Service_IP_Address_of_VSP_One_Block_20_series>/ConfigurationManager/v1/objects/sessions/ -d ""
    Output:
    {
      "token" : " <32-character HEX string>",
      "sessionId" : 380
    }
    
  2. Authenticate to the secondary storage system and generate a token for REST API requests.
    Command:
    curl -k -H "Accept:application/json" -H "Content-Type:application/json" -u maintenance: <maintenance-user-password> -X POST 
    https://<Service_IP_Address_of_VSP_One_Block_20_series>/ConfigurationManager/v1/objects/sessions/ -d ""
    Output:
    {
      "token" : " <32-character HEX string>",
      "sessionId" : 381
    }