我读过有关使用UDP打开端口的内容。我无法找到我读过的原始页面,但我确实找到了这样的答案https://stackoverflow.com/a/1539394
我尝试运行此代码。也许我做错了什么?想法(在上面的链接中)是Alice监听端口5412,从5412(tcp端口)向5411发送一个UDP数据包到bob.Bob(谁不听)使用TCP端口5411(udp端口)来连接到Alice 5412.我在bob上使用命令行来提供alice IP地址。
我做错了吗?当我使用我的公共IP地址(和我的网络地址但不是127.0.0.1)在本地运行时,我得到异常A socket operation was attempted to an unreachable network
。当我在Bob上运行它时,我得到一个连接超时异常。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.Threading;
namespace TcpTest
{
class Program
{
static string localIp = "127.0.0.1";
static string remoteIP = ipaddr;
static void Main(string[] args)
{
//run remotely to connect to you using TCP
if (args.Count() > 0)
{
var t = new TcpClient(new IPEndPoint(IPAddress.Parse(localIp), 5411)); //Force port
t.Connect(args[0], 5412);
return;
}
//Run locally
//Bind TCP port
var l = new TcpListener(5412);
l.Start();
//Send UDP using the listening port to remote address/port
var u = new UdpClient(5412);
u.Connect(remoteIP, 5411);
var buf = new byte[10];
u.Send(buf, buf.Length);
//R
new Thread(SimulateRemote).Start();
//L
var c = l.AcceptTcpClient();
var af=c.Client.RemoteEndPoint;
}
static void SimulateRemote()
{
Thread.Sleep(500);
var t = new TcpClient(new IPEndPoint(IPAddress.Parse(localIp), 5411)); //Force port
t.Connect(myipaddr, 5412);
}
}
}
答案 0 :(得分:5)
你做不到。
TCP端口和UDP端口无法相互连接。您从UdpClient.Send()
发送的数据包的Protocol
字段设置为0x11
,即UDP的值,但TCP堆栈仅识别Protocol
设置为0x06
的数据包},TCP的值。它是IP模块最基本操作的一部分。如果您需要详细信息,请参阅RFC 791。