//构造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 { |
正在阅读:C#实现网段扫描C#实现网段扫描
2004-04-08 14:39
出处:VChome
责任编辑:sdq
键盘也能翻页,试试“← →”键