狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

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

C#實(shí)現(xiàn)端口NAT轉(zhuǎn)發(fā)可以用來實(shí)現(xiàn)遠(yuǎn)程桌面連接內(nèi)網(wǎng)主機(jī)

admin
2021年6月10日 10:28 本文熱度 3978
gYP.Start() 方法調(diào)用后填寫一臺(tái)公網(wǎng)主機(jī)IP(192.168.0.225)和端口(51),然后公網(wǎng)主機(jī)用lcx轉(zhuǎn)發(fā)51到510端口,遠(yuǎn)程桌面在公網(wǎng)主機(jī)連自己(127.0.0.1:510)的510端口,就可以了。

源碼附件:testPortTransfer.rar 附件:lcx.rar


主窗口:FrmPortTransfer.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace testPortTransfer
{
    public partial class FrmPortTransfer : Form
    {
        public string exePath = System.Windows.Forms.Application.StartupPath;  //本程序所在路徑
        public int closeLcx = 0;
        public FrmPortTransfer()
        {
            InitializeComponent();
        }
        
        protected void tYoZ(object sender, EventArgs e)
        {
        }

        private void btnStart_Click(object sender, EventArgs e)
        {
            btnStart.Enabled = false;
            btnStart.Text = "執(zhí)行中...";
            btnStop.Enabled = true;
            if (llH.Text.Length < 7 || ZHS.Text == "" || eEpm.Text.Length < 7 || iXdh.Text == "") return;
            Public.RemoteIP = llH.Text;                               //遠(yuǎn)程IP
            Public.RemotePort = ZHS.Text;                             //遠(yuǎn)程端口
            Public.LocalIP = eEpm.Text;                               //本地IP
            Public.LocalPort = iXdh.Text;                             //本地端口
            Public.StopServiceFlag = 1;                               //執(zhí)行狀態(tài),0-停止、1-執(zhí)行中
            PortForward gYP = new PortForward();
            gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
        }

        private void btnStop_Click(object sender, EventArgs e)
        {
            btnStart.Enabled = true;
            btnStart.Text = "啟動(dòng)";
            btnStop.Enabled = false;
            Public.StopServiceFlag = 0;
            PortForward gYP = new PortForward();
            gYP.lyTOK();
        }

        private void btnServerStart_Click(object sender, EventArgs e)
        {
            btnServerStart.Enabled = false;
            btnServerStart.Text = "執(zhí)行中...";
            btnServerStop.Enabled = true;
            closeLcx = 1;
            btnServerStop_Click(sender, e);
            Thread.Sleep(1000);
            string FilePath = (exePath + @"\lcx.exe").Replace(@"\\", @"\");
            if (File.Exists(FilePath))
            {
                Process.Start(FilePath, " -listen " + txtServerInPort.Text + " " + txtServerOutPort.Text);
            }
            else
            {
                MessageBox.Show("啟動(dòng)應(yīng)用程序失敗:“" + FilePath + "”不存在!", "系統(tǒng)提醒", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }

        private void btnServerStop_Click(object sender, EventArgs e)
        {
            if (closeLcx == 0)
            {
                DialogResult result = MessageBox.Show("您確定要關(guān)閉LCX服務(wù)嗎?", "確認(rèn)關(guān)閉", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
                if (result != DialogResult.OK){ return; }
                btnServerStart.Enabled = true;
                btnServerStart.Text = "啟動(dòng)";
                btnServerStop.Enabled = false;
            }
            closeLcx = 0;
            string FilePath = (exePath + @"\lcx.exe").Replace(@"\\", @"\");
            if (File.Exists(FilePath))
            {
                //停止后臺(tái)服務(wù)程序
                try
                {
                    string CSFilePath = FilePath.ToLower();
                    if (File.Exists(CSFilePath))
                    {
                        Process[] myProcesses = Process.GetProcessesByName("lcx");
                        foreach (Process myProcess in myProcesses)
                        {
                            if (CSFilePath == myProcess.MainModule.FileName.ToLower())
                            {
                                Process p = Process.GetProcessById(myProcess.Id);
                                p.Kill();
                                break;
                            }
                        }
                    }
                }
                catch (Exception) { }
            }
        }
    }

    public class PortForward
    {
        public string Localaddress;
        public int LocalPort;
        public string RemoteAddress;
        public int RemotePort;
        string type;
        Socket ltcpClient;
        Socket rtcpClient;
        Socket server;
        byte[] DPrPL = new byte[2048];
        byte[] wvZv = new byte[2048];
        public struct session
        {
            public Socket rdel;
            public Socket ldel;
            public int llen;
            public int rlen;
        }
        public static IPEndPoint mtJ(string host, int port)
        {
            IPEndPoint iep = null;
            //IPHostEntry aGN = Dns.Resolve(host);
            //IPAddress rmt = aGN.AddressList[0];
            IPAddress rmt = IPAddress.Parse(host);
            iep = new IPEndPoint(rmt, port);
            return iep;
        }
        public void Start(string Rip, int Rport, string lip, int lport)
        {
            try
            {
                LocalPort = lport;
                RemoteAddress = Rip;
                RemotePort = Rport;
                Localaddress = lip;
                rtcpClient = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                ltcpClient = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                rtcpClient.BeginConnect(mtJ(RemoteAddress, RemotePort), new AsyncCallback(iiGFO), rtcpClient);
            }
            catch (Exception ex) { }
        }

        protected void iiGFO(IAsyncResult ar)
        {
            if (Public.StopServiceFlag == 0) { return; }
            try
            {
                session RKXy = new session();
                RKXy.ldel = ltcpClient;
                RKXy.rdel = rtcpClient;
                ltcpClient.BeginConnect(mtJ(Localaddress, LocalPort), new AsyncCallback(VTp), RKXy);
            }
            catch (Exception ex)
            {
                PortForward gYP = new PortForward();
                gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
            }
        }


        protected void VTp(IAsyncResult ar)
        {
            if (Public.StopServiceFlag == 0) { return; }
            try
            {
                session RKXy = (session)ar.AsyncState;
                ltcpClient.EndConnect(ar);
                RKXy.rdel.BeginReceive(DPrPL, 0, DPrPL.Length, SocketFlags.None, new AsyncCallback(LFYM), RKXy);
                RKXy.ldel.BeginReceive(wvZv, 0, wvZv.Length, SocketFlags.None, new AsyncCallback(xPS), RKXy);
            }
            catch (Exception ex)
            {
                PortForward gYP = new PortForward();
                gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
            }
        }
        private void LFYM(IAsyncResult ar)
        {
            if (Public.StopServiceFlag == 0) { return; }
            try
            {
                session RKXy = (session)ar.AsyncState;
                int Ret = RKXy.rdel.EndReceive(ar);
                if (Ret > 0)
                    ltcpClient.BeginSend(DPrPL, 0, Ret, SocketFlags.None, new AsyncCallback(JTcp), RKXy);
                else lyTOK();
            }
            catch (Exception ex)
            {
                PortForward gYP = new PortForward();
                gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
            }
        }
        private void JTcp(IAsyncResult ar)
        {
            if (Public.StopServiceFlag == 0) { return; }
            try
            {
                session RKXy = (session)ar.AsyncState;
                RKXy.ldel.EndSend(ar);
                RKXy.rdel.BeginReceive(DPrPL, 0, DPrPL.Length, SocketFlags.None, new AsyncCallback(this.LFYM), RKXy);
            }
            catch (Exception ex)
            {
                PortForward gYP = new PortForward();
                gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
            }
        }
        private void xPS(IAsyncResult ar)
        {
            if (Public.StopServiceFlag == 0){ return; }
            try
            {
                session RKXy = (session)ar.AsyncState;
                int Ret = RKXy.ldel.EndReceive(ar);
                if (Ret > 0)
                    RKXy.rdel.BeginSend(wvZv, 0, Ret, SocketFlags.None, new AsyncCallback(IZU), RKXy);
                else lyTOK();
            }
            catch (Exception ex)
            {
                PortForward gYP = new PortForward();
                gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
            }
        }
        private void IZU(IAsyncResult ar)
        {
            if (Public.StopServiceFlag == 0) { return; }
            try
            {
                session RKXy = (session)ar.AsyncState;
                RKXy.rdel.EndSend(ar);
                RKXy.ldel.BeginReceive(wvZv, 0, wvZv.Length, SocketFlags.None, new AsyncCallback(this.xPS), RKXy);
            }
            catch (Exception ex)
            {
                PortForward gYP = new PortForward();
                gYP.Start(Public.RemoteIP, int.Parse(Public.RemotePort), Public.LocalIP, int.Parse(Public.LocalPort));
            }
        }
        public void lyTOK()
        {
            try
            {
                if (ltcpClient != null)
                {
                    ltcpClient.Close();
                }
                if (rtcpClient != null)
                    rtcpClient.Close();
            }
            catch (Exception ex) { }
        }
    }
}

類:Public.cs
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace testPortTransfer
{
    class Public
    {
        public static string RemoteIP = "";                              //遠(yuǎn)程IP
        public static string RemotePort = "";                            //遠(yuǎn)程端口
        public static string LocalIP = "";                               //本地IP
        public static string LocalPort = "";                             //本地端口
        public static int StopServiceFlag = 0;                           //執(zhí)行狀態(tài),0-停止、1-執(zhí)行中
    }
}

該文章在 2021/6/10 10:37:35 編輯過
關(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)度、堆場、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場作業(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