如何在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
答案 0 :(得分:0)
“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
如果有任何错误,请告诉我。