반응형 find used port1 현재 사용중인 port 조회하기 현재 local pc에서 사용하고 있는 port 정보를 조회한다. open port는 프로그램에 의해서 열려있는 포트(IIS 등) 아래 netstat는 cmd 명령어의 netstat과 동일하다. //using System.Net.NetworkInformation; string str = string.Empty; IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); IPEndPoint[] ipEndpoint = ipGlobalProperties.GetActiveTcpListeners(); TcpConnectionInformation[] tcpCon = ipGlobalProperties.GetActiveTcpCo.. 2017. 6. 4. 이전 1 다음 반응형