curl -X POST -d '{" nw_src ": "10.0.0.2/32" , " nw_dst ": "10.0.0.1/32" , " nw_proto ": "ICMP "}' http://localhost:8080/firewall/rules/0000000000000001 curl: (7) Failed to connect to localhost port 8080: Connection refused
时间: 2023-06-08 09:08:58 浏览: 153
curl https://github.com/curl/curl.git
这是一个使用curl命令向localhost的8080端口发送POST请求的命令,并且请求体中包含一些关于网络源地址、目的地址和协议的信息。然而,由于连接被拒绝,无法建立与目标服务器的连接。有可能是目标服务器没有启动或没有监听8080端口,也有可能是网络连接存在问题。
阅读全文