C#获取本机可用端口

简介:

当我们要创建一个Tcp/UDP Server connection ,我们需要一个范围在1000到65535之间的端口 。但是本机一个端口只能一个程序监听,所以我们进行本地监听的时候需要检测端口是否被占用。命名空间System.Net.NetworkInformation下定义了一个名为IPGlobalProperties的类,我们使用这个类可以获取所有的监听连接,然后判断端口是否被占用.

//----------------------------------------------------------------------------- 
// Filename: FreePort.cs 
// 
// Description: Helper methods to find the next free UDP and TCP ports. 
// 
// History: 
// 28 Mar 2012    Aaron Clauson    Copied from http://www.mattbrindley.com/developing/windows/net/detecting-the-next-available-free-tcp-port/. 
//-----------------------------------------------------------------------------

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Net; 
using System.Net.NetworkInformation; 
using System.Text; 
using System.Threading;

namespace SIPSorcery.Sys.Net 
{ 
    public class FreePort 
    { 
        private const string PortReleaseGuid = "8875BD8E-4D5B-11DE-B2F4-691756D89593";

        /// <summary> 
        /// Check if startPort is available, incrementing and 
        /// checking again if it's in use until a free port is found 
        /// </summary> 
        /// <param name="startPort">The first port to check</param> 
        /// <returns>The first available port</returns> 
        public static int FindNextAvailableTCPPort(int startPort) 
        { 
            int port = startPort; 
            bool isAvailable = true;

            var mutex = new Mutex(false, 
                string.Concat("Global/", PortReleaseGuid)); 
            mutex.WaitOne(); 
            try 
            { 
                IPGlobalProperties ipGlobalProperties = 
                    IPGlobalProperties.GetIPGlobalProperties(); 
                IPEndPoint[] endPoints = 
                    ipGlobalProperties.GetActiveTcpListeners();

                do 
                { 
                    if (!isAvailable) 
                    { 
                        port++; 
                        isAvailable = true; 
                    }

                    foreach (IPEndPoint endPoint in endPoints) 
                    { 
                        if (endPoint.Port != port) continue; 
                        isAvailable = false; 
                        break; 
                    }

                } while (!isAvailable && port < IPEndPoint.MaxPort);

                if (!isAvailable) 
                    throw new ApplicationException("Not able to find a free TCP port.");

                return port; 
            } 
            finally 
            { 
                mutex.ReleaseMutex(); 
            } 
        }

        /// <summary> 
        /// Check if startPort is available, incrementing and 
        /// checking again if it's in use until a free port is found 
        /// </summary> 
        /// <param name="startPort">The first port to check</param> 
        /// <returns>The first available port</returns> 
        public static int FindNextAvailableUDPPort(int startPort) 
        { 
            int port = startPort; 
            bool isAvailable = true;

            var mutex = new Mutex(false, 
                string.Concat("Global/", PortReleaseGuid)); 
            mutex.WaitOne(); 
            try 
            { 
                IPGlobalProperties ipGlobalProperties = 
                    IPGlobalProperties.GetIPGlobalProperties(); 
                IPEndPoint[] endPoints = 
                    ipGlobalProperties.GetActiveUdpListeners();

                do 
                { 
                    if (!isAvailable) 
                    { 
                        port++; 
                        isAvailable = true; 
                    }

                    foreach (IPEndPoint endPoint in endPoints) 
                    { 
                        if (endPoint.Port != port) 
                            continue; 
                        isAvailable = false; 
                        break; 
                    }

                } while (!isAvailable && port < IPEndPoint.MaxPort);

                if (!isAvailable) 
                    throw new ApplicationException("Not able to find a free TCP port.");

                return port; 
            } 
            finally 
            { 
                mutex.ReleaseMutex(); 
            } 
        } 
    } 
}

本文来自云栖社区合作伙伴“doNET跨平台”,了解相关信息可以关注“opendotnet”微信公众号

目录
相关文章
|
6月前
|
弹性计算 Shell Linux
|
4月前
|
弹性计算 应用服务中间件 Linux
阿里云服务器开放端口完整图文教程
笔者近期开发完成的服务端程序部署在阿里云的ECS云服务器上面,一些应用程序配置文件需要设置监听的端口(如Tomcat的8080、443端口等),虽然通过CentOs 7系统的的「防火墙」开放了对应的端口号,任然无法访问端口号对应的应用程序,后面了解到原来还需要设置云服务器的「安全组规则」,开放相应的端口权限,服务端的接口才能真正开放。
668 1
阿里云服务器开放端口完整图文教程
|
4月前
|
弹性计算 运维 数据安全/隐私保护
云服务器 ECS产品使用问题之如何更改服务器的IP地址或端口号
云服务器ECS(Elastic Compute Service)是各大云服务商阿里云提供的一种基础云计算服务,它允许用户租用云端计算资源来部署和运行各种应用程序。以下是一个关于如何使用ECS产品的综合指南。
|
3月前
|
缓存 NoSQL 网络安全
【Azure Redis 缓存】使用开源工具redis-copy时遇见6379端口无法连接到Redis服务器的问题
【Azure Redis 缓存】使用开源工具redis-copy时遇见6379端口无法连接到Redis服务器的问题
|
4月前
|
网络协议 Linux Unix
面试官:服务器最大可以创建多少个tcp连接以及端口并解释下你对文件句柄的理解
面试官:服务器最大可以创建多少个tcp连接以及端口并解释下你对文件句柄的理解
116 0
面试官:服务器最大可以创建多少个tcp连接以及端口并解释下你对文件句柄的理解
|
3月前
|
网络协议
【qt】TCP的监听 (设置服务器IP地址和端口号)
【qt】TCP的监听 (设置服务器IP地址和端口号)
196 0
|
4月前
|
存储 安全 网络安全
服务器设置了端口映射之后外网还是访问不了服务器
服务器设置了端口映射之后外网还是访问不了服务器
若依修改,若依部署在本地运行时的注意事项,后端连接了服务器,本地的vue.config.js要先改成localhost:端口号与后端匹配,部署的时候再改公网IP:端口号
若依修改,若依部署在本地运行时的注意事项,后端连接了服务器,本地的vue.config.js要先改成localhost:端口号与后端匹配,部署的时候再改公网IP:端口号
|
5月前
|
Java Android开发
Java Socket编程示例:服务器开启在8080端口监听,接收客户端连接并打印消息。
【6月更文挑战第23天】 Java Socket编程示例:服务器开启在8080端口监听,接收客户端连接并打印消息。客户端连接服务器,发送&quot;Hello, Server!&quot;后关闭。注意Android中需避免主线程进行网络操作。
99 4

热门文章

最新文章