Administrator's Guide

2. Using the token acquired in the preceding step, execute this cURL command to view the team
configuration:
curl --noproxy member-ip
--header "X-Auth-Token:auth_token"
--fail -ksSfL --request GET
--url https://member-ip:8443/sdn/v2.0/team
For example:
curl --noproxy 192.0.2.100
--header "X-Auth-Token:auth_token"
--fail -ksSfL --request GET
--url https://192.0.2.100:8443/sdn/v2.0/team
The resulting team configuration output includes the following:
{
"team": {
"ip": "192.0.2.100",
"revision":0
"members": [
{
"ip": "192.0.2.119"
},
{
"ip": "192.0.2.125"
},
{
"ip": "192.0.2.127"
}
]
}
}
In the json format, the above appears in the following layout:
{"team":{"ip":"192.0.2.100","members":
[{"ip":"192.0.2.119"},
{"ip":"192.0.2.125"},
{"ip":"192.0.2.127"}]}}
7.6 Disbanding a team
Disbanding a team returns the teamed controllers to standalone operation.This action initiates the
team delete. The REST call may return before the delete has completed. The admin needs to check
the system to see the running state of the system.
NOTE: Before disbanding a team, delete the region configuration for that team. See “Deleting
a region” (page 91).
1. Acquire an authentication token for the team leader. (See step 4 of “Team configuration
prerequisites” (page 80).)
2. Using the token acquired in the preceding step, execute this cURL command to disband the
team:
curl --noproxy <team-ip> --header "X-Auth-Token:<auth_token>
" --fail
-ksSfL --request DELETE --url
https://<member-ip>:8443/sdn/v2.0/team
The resulting output includes the following:
84 Team configuration