Hi,
Sorry for jumping in.
OFPBRC_BAD_EXPERIMENTER(3) means that the specified experimenter_id(in
this case, 6) is not found.
Please confirm what kind of experimenter your switch supports.
Thanks,
Fujimoto
On 2017年12月05日 18:20, Subha wrote:
Hi Iwase,
Sure will try the approach u mentioned.
Hi Iwase,
Sure will try the approach u mentioned. Meanwhile I tried using the
following json file but got error.
Can you pls correct me, if am missing something.
curl -X POST -d '{
"dpid": 55930,
"table_id": 0,
"exp_type": 65535,
"experimenter": 6,
"len": 8,
"data_type": "ascii",
"data":
Hi Subha,
How about the following?
Example:
experimenter =
exp_type =
data = b'\x00\x00...' # as a raw binary data
msg = ofproto.OFPExperimenter(
datapath, experimenter=experimenter, exp_type=exp_type, data=data)
datapath.send_msg(msg)
Thanks,
Iwase
On 2017年12月