From 1970e70a0d64d9f8b9dd36e53dc71cf6fb20fdfd Mon Sep 17 00:00:00 2001 From: tungyueh Date: Thu, 25 Aug 2016 15:53:17 +0800 Subject: add modify role API in ofctl_rest add description about role API Signed-off-by: tungyueh Reviewed-by: Iwase Yusuke Signed-off-by: FUJITA Tomonori --- doc/source/app/ofctl_rest.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'doc/source') diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst index 1cba2f65..c69692c5 100644 --- a/doc/source/app/ofctl_rest.rst +++ b/doc/source/app/ofctl_rest.rst @@ -2512,6 +2512,33 @@ Delete a meter entry "meter_id": 1 }' http://localhost:8080/stats/meterentry/delete +Modify role +-------------------- + + modify the role of the switch. + + Usage: + + ======= ========================= + Method POST + URI /stats/role + ======= ========================= + + Request message body: + + =========== ============================ ========= ================= + Attribute Description Example Default + =========== ============================ ========= ================= + dpid Datapath ID (int) 1 (Mandatory) + role One of OFPCR_ROLE_*(string) "MASTER" OFPCR_ROLE_EQUAL + =========== ============================ ========= ================= + + Example of use:: + + $ curl -X POST -d '{ + "dpid": 1, + "role": "MASTER" + }' http://localhost:8080/stats/role Support for experimenter multipart ================================== -- cgit v1.2.3