Create an uplink set

Each uplink set must have a unique name and contain at least one network. See the HPE OneView Support Matrix for the maximum number of supported uplink sets.

For more information about uplink sets, see About logical interconnects.

Prerequisites

  • Minimum required session ID privileges: Infrastructure administrator or Network administrator

Creating an uplink set using REST APIs
  1. Select the logical interconnect URI.

    GET /rest/logical-interconnects

  2. Get the logical interconnect using the URI from step 1.

    GET /rest/logical-interconnects/{id}

  3. Select a set of Ethernet, Fibre Channel, or FCoE network URIs not assigned to an uplink set.

    GET /rest/ethernet-networks?filter="assignedToUplinkSet='false'"

    GET /rest/fc-networks?filter="assignedToUplinkSet='false'"

    GET /rest/fcoe-networks?filter="assignedToUplinkSet='false'"

  4. Select the uplink ports using the interconnect URIs. The URIs are contained in the logical interconnect resource model returned in step 2.

    GET {uri}/ports

  5. Create the uplink set with the information from the previous steps.

    POST /rest/uplink-sets