欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#中实现网段扫描的代码

程序员文章站 2023-11-14 14:05:04
摘要  想必大家对小榕时光等扫描器都非常熟悉了,有没有自己写一个的冲动。最近微软推实施了.net战略方案,c#是主推语言,你们是否有兴趣用c#来实现对局域网ip地...
摘要 
想必大家对小榕时光等扫描器都非常熟悉了,有没有自己写一个的冲动。最近微软推实施了.net战略方案,c#是主推语言,你们是否有兴趣用c#来实现对局域网ip地址的扫描,尝试一下自己写的快乐,那么请跟我来。 
正文 
1.先介绍一下使用的类: 
dns类:在.net中的system.net命名空间下,主要的功能是从 internet 域名系统 (dns) 检索关于特定主机的信息。 
iphostentry类:将一个域名系统 (dns) 主机与一组别名和一组匹配的 ip 地址关联,和dns类一起使用。 
ipaddress 类:ip 网络上的地址。 
使用的命名空间有: 
system.net 命名空间为当前网络上使用的多种协议提供了简单的编程接口. 
system.io命名空间包含允许在数据流和文件上进行同步和异步读取及写入的类型。 
system.thread 命名空间主要是用来多线程序编程。 
程序实现以下几个功能: 
2.获取本地主机ip地址 
/// <summary> 
/// 按扭查询本机ip 
/// </summary> 
/// <param name="sender"></param> 
/// <param name="e"></param> 
private void button1_click(object sender, system.eventargs e) 

iphostentry myhost = new iphostentry(); 
try 

this.richtextbox1.text = ""; 
// dns.gethostname()获取本地计算机的主机名 
// dns.gethostbyname()获取指定 dns 主机名的 dns 信息 
//得到本地主机的dns信息 
myhost = dns.gethostbyname(dns.gethostname()); 
//显示本地主机名 
textbox1.text = myhost.hostname.tostring(); 
//显示本地主机的ip地址表 
for(int i=0; i<myhost.addresslist.length;i++) 

richtextbox1.appendtext("本地主机ip地址->" + myhost.addresslist[i].tostring()+ "\r"); 


catch(exception error) 

messagebox.show(error.message); 


3.远程查询 
private void button2_click(object sender, system.eventargs e) 

this.richtextbox1.text = ""; 
iphostentry mydnstoip = new iphostentry(); 
//dns.resolve 方法: 将 dns 主机名或以点分隔的四部分表示法格式的 
// ip 地址解析为 iphostentry实例 
mydnstoip =dns.resolve(textbox2.text.tostring()); 
//显示此域名的ip地址的列表 
for(int i=0;i<mydnstoip.addresslist.length;i++) 

richtextbox1.appendtext(textbox2.text + "的ip地址是" + mydnstoip.addresslist[i].tostring() + "\r"); 


4.实现网段的扫描 
实现网段的扫描,确定网络中正在使用的主机数目。这里使用了多线程技术,增加了一个线程,为了防止程序扫描的时间过长,影响程序的响应。不过在.net中由于使用了垃圾收集技术所以对线程的控制也不是很复杂的。 
private void button3_click(object sender, system.eventargs e) 

this.richtextbox1.text = ""; 
//thread 类: 创建并控制线程 
//thread thscan = new thread(new threadstart(scantarget)); 
thread thscan = new thread(new threadstart(scantarget)); 
//thread.start 方法:启动线程 
thscan.start(); 

private void scantarget() 

//构造ip地址的31-8bit 位,也就是固定的ip地址的前段 
// numericupdown1是定义的system.windows.forms.numericupdown控件 
string stripaddress = numericupdown1.text + "." + numericupdown2.text + "." + numericupdown3.text + "."; 
//开始扫描地址 
int nstrat = int32.parse(numericupdown4.text); 
//终止扫描地址 
int nend =int32.parse(numericupdown5.text); 
//扫描的操作 
for(int i = nstrat; i <= nend; i++) 

string strscanipadd = stripaddress +i.tostring(); 
//转换成ip地址 
ipaddress myscanip = ipaddress.parse(strscanipadd); 
try 

//你可以加入自已的,增强功能 
// dns.gethostbyaddress 方法: 根据 ip 地 
//址获取 dns 主机信息。 
iphostentry myscanhost = dns.gethostbyaddress(myscanip); 
//获取主机的名 
string strhostname =myscanhost.hostname.tostring(); 
richtextbox1.appendtext(strscanipadd + "->" + strhostname + "\r"); 

catch(exception error) 

messagebox.show(error.message); 



到此为止一个简单用c#实现扫描器的主要功能就完成了,试一下你可以看到你的网络上的主机,有没有成就感了:)