繁体   English   中英

通过服务器脚本进行简单的PHP NAT打孔

[英]Simple PHP NAT Punch Through Server Script

我正在尝试编写一个可以充当“主服务器”并促进两个Java游戏客户端之间的P2P连接的PHP脚本。 我正在使用共享的Web主机,该主机允许主服务器的端口访问。

首先,我想测试主服务器和Java客户端之间的UDP套接字连接。 这是我的PHP脚本,名为“ masterServer.php”

<?php
error_reporting(E_ALL);
set_time_limit(40); // Allow script to execute for at most 40 seconds.
$myFile = "output.txt";
$fh = fopen($myFile, 'w');

if ($socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP))
{

if(socket_bind($socket,0, 2005))
{
    $clientAddress = 0;
    $clientPort = 0;
    fwrite($fh, "Start at: ".time());
    fwrite($fh, "Waiting for socket at ".time());
    if(socket_recvfrom($socket, &$udp_buff, 23, MSG_WAITALL, &$clientAddress, &$clientPort)) // BLOCKING METHOD
    {
        fwrite($fh, print_r($udp_buff, true));
    }
    else
    {
        echo(socket_strerror(socket_last_error()));
        die();
    }
}
else
{
    echo(socket_strerror(socket_last_error()));
    die();
}
}
else
{
echo(socket_strerror(socket_last_error()));
die();
}

fwrite($fh, "End at: ".time());
fclose($fh);
?>

我访问masterServer.php以使脚本运行,并在几秒钟内启动了一个简单的Java应用程序,该应用程序应将UDP数据包发送到主服务器。 这是Java应用程序的代码:

package comm;

import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException;

public class UDPSocket 
{
public static void main (String[] asdf)
{

    try 
    {

        String host = <SERVER ADDRESS>;
        int port = 2005;

        byte[] message = "Java Source and Support".getBytes();

        // Get the internet address of the specified host
        InetAddress address = InetAddress.getByName(host);

        // Initialize a datagram packet with data and address
        DatagramPacket packet = new DatagramPacket(message, message.length,
                address, port);

        // Create a datagram socket, send the packet through it, close it.
        DatagramSocket dsocket = new DatagramSocket();
        dsocket.send(packet);
        dsocket.close();

    } 
    catch (SocketException e)
    {
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

}
}

据我了解,PHP服务器未接收到UDP数据包。 该脚本不会继续执行阻塞的socket_recvfrom()方法,并且不会将UDP数据包的内容写入输出文本文件。 谁能帮我吗?

在此处输入图片说明

由于共享主机在路由器和防火墙后面运行,因此您的套接字将监听其内部IP地址“ 192.168.1.102”(如上图所示),该地址未连接到Internet,因此它无法接收从内部网络外部发送的任何数据。

解决方案由于您正在使用UDP,因此可以使用一种流行的方法,称为UDP Puch Holing ,您可以使用该方法从Internet发送和接收数据。 根据您的要求。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM