开发者

Network port listener on c#

I'm trying to listen the active ports on my network. I tried HttpListener, but I'm not sure if this is the right listener. Any ideas or examples?

using (m_listener = new HttpListener())
{ 
m_listener.Prefixes.Add("http://*:8080/"); 
m_listener.Start(); 
while (m_listener.IsListening)
{ 
HttpListenerContext context = m_listener.GetContext(); 
HttpListenerRequest request = context.Request; 
HttpListenerResponse response = cont开发者_StackOverflowext.Response; 
textBox1.Text += request.RawUrl + "\r\n"; 
textBox1.Text += request.UserHostName + "\r\n"; } 
m_listener.Stop(); 
}


HttpListener is probably not your best bet if you want to do a full network scan. I would look into the System.Net.Sockets namespace. Port scanners are typically done via the sockets interface. You can create TCP and UDP sockets and bind them to listen to any port on a local machine or connect to a remote machine. If the socket succeeds, then the port is open and ready.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜