如何从Mininet中的JavaScript文件中执行curl?您能告诉我如何执行此命令:
curl -X POST -d '{"match": {"nw_dst": "10.0.0.1", "nw_proto": "UDP", "tp_dst": "5002"}, "actions":{"queue": "1"}}' http://localhost:8080/qos/rules/0000000000000001
" curl"不是Mininet命令。相反,它是一个shell命令,因此您需要使用Mininet的" SH"命令执行" curl"。
我没有尝试过,但是看起来像:
sh curl -X POST -d '{"match": {"nw_dst": "10.0.0.1", "nw_proto": "UDP", "tp_dst": "5002"}, "actions":{"queue": "1"}}' http://localhost:8080/qos/rules/0000000000000001
如果有任何问题,请告诉我。