欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

C#編寫內(nèi)網(wǎng)穿透程序源碼,讓您的應(yīng)用無處不在

admin
2014年6月15日 9:2 本文熱度 3187

內(nèi)網(wǎng)穿透是一種將本地計(jì)算機(jī)或網(wǎng)絡(luò)設(shè)備中的服務(wù)暴露在公共網(wǎng)絡(luò)中的技術(shù)。

以下是用C#編寫一個(gè)簡單的內(nèi)網(wǎng)穿透的示例:

using System;

using System.Net;

using System.Net.Sockets;

namespace SimplePortForwarding

{

class Program

{

static void Main(string[] args)

{

int localPort = 8080; // 本地端口

int remotePort = 80; // 遠(yuǎn)程端口

string remoteHost = "http://example.com"; // 遠(yuǎn)程主機(jī)地址

IPAddress localAddress = Dns.GetHostEntry(Dns.GetHostName()).AddressList[0]; // 獲取本地IP地址

TcpListener listener = new TcpListener(localAddress, localPort); // 監(jiān)聽本地端口

listener.Start(); // 啟動(dòng)監(jiān)聽器

Console.WriteLine("Listening on {0}:{1}...", localAddress, localPort);

while (true)

{

TcpClient client = listener.AcceptTcpClient(); // 接受客戶端連接

Console.WriteLine("Accepted connection from {0}", client.Client.RemoteEndPoint);

NetworkStream stream = client.GetStream(); // 獲取網(wǎng)絡(luò)流

TcpClient remoteClient = new TcpClient(remoteHost, remotePort); // 連接遠(yuǎn)程主機(jī)

Console.WriteLine("Connected to {0}:{1}", remoteHost, remotePort);

NetworkStream remoteStream = remoteClient.GetStream(); // 獲取遠(yuǎn)程網(wǎng)絡(luò)流

Console.WriteLine("Forwarding data...");

ForwardData(stream, remoteStream); // 轉(zhuǎn)發(fā)數(shù)據(jù)

client.Close(); // 關(guān)閉客戶端連接

remoteClient.Close(); // 關(guān)閉遠(yuǎn)程主機(jī)連接

}

}

static void ForwardData(NetworkStream source, NetworkStream destination)

{

byte[] buffer = new byte[4096]; // 緩沖區(qū)

int bytesRead;

while ((bytesRead = source.Read(buffer, 0, buffer.Length)) > 0) // 從源流讀取數(shù)據(jù)

{

destination.Write(buffer, 0, bytesRead); // 寫入目標(biāo)流

}

}

}

}

這個(gè)示例程序?qū)⒈镜囟丝?080上的所有連接轉(zhuǎn)發(fā)到遠(yuǎn)程主機(jī)http://example.com的端口80上。您可以根據(jù)需要更改這些值。

如果您不想使用第三方軟件庫,可以使用Socket編程來實(shí)現(xiàn)內(nèi)網(wǎng)穿透。以下是一個(gè)簡單的C#內(nèi)網(wǎng)穿透程序示例,該程序?qū)⒈镜囟丝?080上的所有連接轉(zhuǎn)發(fā)到公共URL上:

using System;

using System.IO;

using System.Net;

using System.Net.Sockets;

namespace SimplePortForwarding

{

class Program

{

static void Main(string[] args)

{

int localPort = 8080; // 本地端口

string publicUrl = "http://example.com"; // 公共URL

TcpListener listener = new TcpListener(IPAddress.Any, localPort); // 監(jiān)聽本地端口

listener.Start();

Console.WriteLine("Listening on {0}...", listener.LocalEndpoint);

while (true)

{

TcpClient client = listener.AcceptTcpClient(); // 接受客戶端連接

Console.WriteLine("Accepted connection from {0}", client.Client.RemoteEndPoint);

TcpClient server = new TcpClient(); // 連接公共URL

server.Connect(publicUrl, 80);

Console.WriteLine("Connected to {0}", publicUrl);

Stream clientStream = client.GetStream();

Stream serverStream = server.GetStream();

byte[] buffer = new byte[1024];

int bytesRead;

do

{

bytesRead = clientStream.Read(buffer, 0, buffer.Length); // 從客戶端讀取數(shù)據(jù)

serverStream.Write(buffer, 0, bytesRead); // 將數(shù)據(jù)寫入服務(wù)器

} while (bytesRead > 0);

client.Close();

server.Close();

Console.WriteLine("Connection closed");

}

}

}

}

在使用此程序之前,您需要將publicUrl變量更改為公共URL。在運(yùn)行程序之后,它將監(jiān)聽本地端口并接受所有傳入連接。每當(dāng)它接受一個(gè)連接時(shí),它將連接到公共URL并將連接數(shù)據(jù)轉(zhuǎn)發(fā)到服務(wù)器。當(dāng)連接關(guān)閉時(shí),它將關(guān)閉連接并等待下一個(gè)連接。


該文章在 2024/6/2 16:22:41 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲(chǔ)管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved