HttpListener 在 public ip 上没有响应
HttpListener not responding on public ip
我的 HttpListener 代码在接收 LAN 请求时工作正常,但是当我使用我的 public ip 发送请求时,侦听器没有响应。我已经打开了我的侦听器正在使用的端口 (:8080),它与计算机的 ip 运行 代码相关联。 192.168.2.80。我使用端口检查器工具检查了端口是否打开,当代码为 运行 时,端口检查器确实发现端口处于活动状态。但是仍然没有收到来自我的 public ip 的请求。我做错了什么?
而且我还禁用了我的路由器防火墙以及我的计算机。
static void Main(string[] args)
{
var prefixes = new List<string>() { "http://*:8080/" };
HttpListener server = new HttpListener();
foreach (string s in prefixes)
{
server.Prefixes.Add(s);
}
try
{
server.Start();
}
catch(Exception ex)
{
Console.WriteLine(ex.ToString());
return;
}
while (true)
{
HttpListenerContext context = server.GetContext();
HttpListenerRequest request = context.Request;
HttpListenerResponse response = context.Response;
string responseString;
Stream stream = request.InputStream;
StringBuilder stringBuilder = new StringBuilder();
byte[] inputBuffer = new byte[request.ContentLength64];
int dataRead = stream.Read(inputBuffer, 0, (int)request.ContentLength64);
stringBuilder.Append(Encoding.ASCII.GetString(inputBuffer));
var client = new RestClient("http://141.237.167.74:8080");
var request = new RestRequest(Method.POST);
request.Timeout = Timeout.Infinite;
string data = "{'username':'MARKATOS','gameid':'bcfc775e-9215-4dcb-9116-f52b64a9b55d','move':'P1001'}";
string json = "{'action':'UploadMove','data':\"" + data + "\"}";
request.AddJsonBody(json);
IRestResponse response = client.Execute(request);
事实证明,HttpListener 确实在使用我的 public ip,而不是来自我自己的计算机,这是 运行 代码。我本地网络之外的任何其他人都可以成功向我发送 http 请求。
我的 HttpListener 代码在接收 LAN 请求时工作正常,但是当我使用我的 public ip 发送请求时,侦听器没有响应。我已经打开了我的侦听器正在使用的端口 (:8080),它与计算机的 ip 运行 代码相关联。 192.168.2.80。我使用端口检查器工具检查了端口是否打开,当代码为 运行 时,端口检查器确实发现端口处于活动状态。但是仍然没有收到来自我的 public ip 的请求。我做错了什么?
而且我还禁用了我的路由器防火墙以及我的计算机。
static void Main(string[] args)
{
var prefixes = new List<string>() { "http://*:8080/" };
HttpListener server = new HttpListener();
foreach (string s in prefixes)
{
server.Prefixes.Add(s);
}
try
{
server.Start();
}
catch(Exception ex)
{
Console.WriteLine(ex.ToString());
return;
}
while (true)
{
HttpListenerContext context = server.GetContext();
HttpListenerRequest request = context.Request;
HttpListenerResponse response = context.Response;
string responseString;
Stream stream = request.InputStream;
StringBuilder stringBuilder = new StringBuilder();
byte[] inputBuffer = new byte[request.ContentLength64];
int dataRead = stream.Read(inputBuffer, 0, (int)request.ContentLength64);
stringBuilder.Append(Encoding.ASCII.GetString(inputBuffer));
var client = new RestClient("http://141.237.167.74:8080");
var request = new RestRequest(Method.POST);
request.Timeout = Timeout.Infinite;
string data = "{'username':'MARKATOS','gameid':'bcfc775e-9215-4dcb-9116-f52b64a9b55d','move':'P1001'}";
string json = "{'action':'UploadMove','data':\"" + data + "\"}";
request.AddJsonBody(json);
IRestResponse response = client.Execute(request);
事实证明,HttpListener 确实在使用我的 public ip,而不是来自我自己的计算机,这是 运行 代码。我本地网络之外的任何其他人都可以成功向我发送 http 请求。