資源簡介
UPnp內網穿透
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?System.Net;
using?System.Net.Sockets;
using?NATUPNPLib;
using?System.Threading;
using?System.Text.Regularexpressions;
using?System.IO;
namespace?_22UPnP穿透內網
{
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????//獲取Host?Name
????????????string?serverName?=?Dns.GetHostName();
????????????Console.WriteLine(“Server名稱:“?+?serverName);
????????????//從當前Host?Name解析IP地址,篩選IPv4地址是本機的內網IP地址。
????????????IPAddress?internalIP?=?Dns.GetHostEntry(serverName).AddressList
????????????????.Where(i?=>?i.AddressFamily?==?AddressFamily.InterNetwork)
????????????????.FirstOrDefault();
????????????Console.WriteLine(“Server內網IP:“?+?internalIP);
????????????UPn
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2013-06-02?13:55??bin\
?????目錄???????????0??2013-07-02?21:01??bin\Debug\
?????文件????????9216??2013-07-02?20:57??bin\Debug\22UPnP穿透內網.exe
?????文件???????17920??2013-07-02?20:57??bin\Debug\22UPnP穿透內網.pdb
?????文件???????11600??2013-07-02?20:57??bin\Debug\22UPnP穿透內網.vshost.exe
?????文件?????????490??2012-06-06?02:06??bin\Debug\22UPnP穿透內網.vshost.exe.manifest
?????目錄???????????0??2013-06-02?13:55??bin\Release\
?????目錄???????????0??2013-06-02?13:55??obj\
?????目錄???????????0??2013-06-02?13:55??obj\x86\
?????目錄???????????0??2013-07-02?20:57??obj\x86\Debug\
?????文件?????????625??2013-07-02?20:57??obj\x86\Debug\22UPnP穿透內網.csproj.FileListAbsolute.txt
?????文件????????7553??2013-07-02?20:57??obj\x86\Debug\22UPnP穿透內網.csprojResolveAssemblyReference.cache
?????文件????????9216??2013-07-02?20:57??obj\x86\Debug\22UPnP穿透內網.exe
?????文件???????17920??2013-07-02?20:57??obj\x86\Debug\22UPnP穿透內網.pdb
?????文件????????6039??2013-07-02?20:57??obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????目錄???????????0??2013-06-02?13:55??obj\x86\Debug\TempPE\
?????目錄???????????0??2013-06-02?13:55??Properties\
?????文件????????1386??2013-06-02?13:55??Properties\AssemblyInfo.cs
?????文件????????2631??2013-06-02?15:24??22UPnP穿透內網.csproj
?????文件????????7680??2013-04-29?18:46??Interop.NATUPNPLib.dll
?????文件????????4457??2013-07-02?21:00??Program.cs
評論
共有 條評論