gpt4 book ai didi

带有 NAT 和动态 DNS 的 Java 服务器套接字

转载 作者:可可西里 更新时间:2023-11-01 02:34:44 26 4
gpt4 key购买 nike

我正在尝试用 Java 为数据收集项目开发服务器端程序。

架构如下:

我有一个远程电子设备,它定期收集数据并将其发送回服务器。该设备配备了一张已激活 GPRS 连接的 SIM 卡,因此可以将其视为一台可以上网的电脑。在将数据发送回服务器之前,它必须知道服务器的 IP 地址。

因为通过我的 ISP 获得静态 IP 太贵了,所以我决定尝试动态 DNS (DDNS)。我已经在我的 PC 上安装了 DDNS 客户端,并在我的路由器中配置了端口转发,如下所示:

External Port Start: 33333
External Port End: 33333
Protocol: TCP
Internal Port Start: 33333
Internal Port End: 33333
Server IP Address: 192.168.0.100 // My PC's IP Adress.

然后我尝试在我的 PC 上运行一个简单的服务器/客户端程序(是的,它们都在同一台 PC 上)。它们没有做任何复杂的事情,只是使用 DataInputStreamDataOutputStream 类发送和接收一些字符串。

客户端可以连接到服务器,服务器可以接受连接(端口转发有效?!)。但是当他们尝试读取或发送数据时,他们都会抛出 IOException。服务器说 Connection reset,几秒钟后,客户端 timeout

似乎当服务器接受一个新连接时,他们会选择一个在端口转发设置中没有指定的任意新端口号,这是问题吗?

我想知道 IOException 的真正原因是什么,为什么他们不能读取或写入数据,以及解决问题的任何建议?

非常感谢。

服务器代码:

import java.net.*;
import java.io.*;

public class GreetingServer extends Thread
{
private ServerSocket serverSocket;

public GreetingServer(int port) throws IOException
{
serverSocket = new ServerSocket(port);
}

public void run()
{
while(true)
{
try
{
System.out.println("Waiting for client on port " +
serverSocket.getLocalPort() + "...");
Socket server = serverSocket.accept();
System.out.println("Just connected to "
+ server.getRemoteSocketAddress());
DataInputStream in =
new DataInputStream(server.getInputStream());
System.out.println(in.readUTF());
DataOutputStream out =
new DataOutputStream(server.getOutputStream());
out.writeUTF("Thank you for connecting to "
+ server.getLocalSocketAddress() + "\nGoodbye!");
server.close();
}catch(SocketTimeoutException s)
{
System.out.println("Socket timed out!");
break;
}catch(IOException e)
{
e.printStackTrace();
break;
}
}
}
public static void main(String [] args)
{
int port = 33333;
try
{
Thread t = new GreetingServer(port);
t.start();
}catch(IOException e)
{
e.printStackTrace();
}
}
}

客户端代码:xxxxxxx.xicp.net是我的免费域名,服务器监听33333端口。

import java.net.*;
import java.io.*;

public class GreetingClient
{
public static void main(String [] args)
{
InetAddress ip;
String serverName;
int port = 33333;
try
{
ip = InetAddress.getByName("xxxxxxx.xicp.net");
serverName = ip.getHostAddress();
System.out.println("Connecting to " + serverName
+ " on port " + port);
Socket client = new Socket(ip, port);
System.out.println("Just connected to "
+ client.getRemoteSocketAddress());
OutputStream outToServer = client.getOutputStream();
DataOutputStream out =
new DataOutputStream(outToServer);

out.writeUTF("Hello from "
+ client.getLocalSocketAddress());
InputStream inFromServer = client.getInputStream();
DataInputStream in =
new DataInputStream(inFromServer);
System.out.println("Server says " + in.readUTF());
client.close();
}catch(IOException e)
{
e.printStackTrace();
}
}
}

最佳答案

My guess: I've NAT configured in my router, so all incoming connection is forwarded to the port 33333 of my PC. Once the client is connected to the server, it will pick an other port, e.g. 5000, to communicate with the server. When the server tries to send something to the client, it sends it to port 5000. AS in NAT setting the port 5000 is not forwarded, the transmission fails. I'm not sure, need to be tested.

好的,确认了。我尝试使用手机的 3G 连接在我的笔记本电脑上运行客户端,并将我的台式电脑上的服务器连接到路由器。端口 33333 转发给桌面 PC。现在它完美地工作。

关于带有 NAT 和动态 DNS 的 Java 服务器套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19914069/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com