-
Notifications
You must be signed in to change notification settings - Fork 2
Portname
okinawaopenlabs edited this page Jul 22, 2015
·
5 revisions
ポートの更新
ポートの削除
#####URI
http://<OF-Patch Manager IP address>:<port>/ofpm/device_mng/port/{deviceName}/{portName}
#####Method
Method name | Description |
---|---|
PUT | ポートの更新 |
DELETE | ポートの削除 |
#####Request parameters(PUT)
Parameter Name | Value | Description |
---|---|---|
portName | ポート名を指定 | |
portNumber | ポート番号を指定 | |
band | 帯域幅情報を指定 ・10Gbps ・1Gbps |
・Spine-Leaf間は10Gbpsを指定 ・Leaf-他機器間は1Gbpsを指定 |
#####Request parameters(DELETE) ※None parameter
#####Request sample(POST)
http://127.0.0.1:18080/ofpm/device_mng/port/NETGEAR_GS116_HUB01/Port1
{
'portNumber':10
}
#####Request sample(DELETE)
http://127.0.0.1:18080/ofpm/device_mng/port/NETGEAR_GS116_HUB01/Port1
#####Response(POST)
Parameter name | Value | Description |
---|---|---|
status | HTTPステータスコード | |
message | HTTPメッセージ | エラーメッセージが格納される。 |
#####Response(DELETE)
Parameter name | Value | Description |
---|---|---|
status | HTTPステータスコード | |
message | HTTPメッセージ | エラーメッセージが格納される。 |
#####Response sample(POST)
{
status:200
}
#####Response sample(DELETE)
{
"status": 200
}