程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> C#實現更改IP功能源碼

C#實現更改IP功能源碼

編輯:.NET實例教程
using System;
using System.Management;
 
public class ChangeIP
{
 
 
 
    private ManagementBaSEObject iObj = null;
    private ManagementBaSEObject oObj = null;
    private ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
    private readonly ManagementObjectCollection moc;
 
    ///<summary>
    /// example:
    ///<code>
    /// ChangeIP o = new ChangeIP();
    /// string[] ipList = new string[]{"192.168.0.253","192.168.0.250"};
    ///string[] subnetList = new string[]{"255.255.255.0","255.255.255.0"};
    /// o.ChangeTo(ipList,subnetList);
    ///</code>
    ///</summary>
    public ChangeIP()
    {
        moc = mc.GetInstances();
    }
 
    ///<summary>cortrol</summary>
    ///<param name="ipAddr">IPAddr List</param>
    ///<param name="subnetMask">subnetMask List</param>
    public void ChangeTo(string[] ipAddr, string[] subnetMask)
    {
        foreach (ManagementObject mo in moc)
        {

            if (!(bool)mo["IPEnabled"]) continue;
 
            iObj = mo.GetMethodParameters("EnableStatic");
            iObj["IPAddress"] = ipAddr;
            iObj["SubnetMask"] = subnetMask;
            oObj = mo.InvokeMethod("EnableStatic", iObj, null);
        }
    }
 
    ///<summary>cortrol</summary>
    ///<param name="ipAddr">IPAddr List</param>
    ///<param name="subnetMask">subnetMask List</param>
    ///<param name="gateways">gateway List</param>
 &nbsp;  ///<param name="gatewayCostMetric">gateway CostMetric List, example: 1</param>
    public void ChangeTo(string[] ipAddr, string[] subnetMask, string[] gateways, string[] gatewayCostMetric)
    {
        foreach (ManagementObject mo in moc)
        {
            if (!(bool)mo["IPEnabled"]) continue;
 
            iObj = mo.GetMethodParameters("EnableStatic");
            iObj["IPAddress"] = ipAddr;
            iObj["SubnetMask"] = subnetMask;
            oObj = mo.InvokeMethod("EnableStatic", iObj, null);
 
            iObj = mo.GetMethodParameters("SetGateways");

SIZE: 9pt">            iObj["DefaultIPGateway"] = gateways;
            iObj["GatewayCostMetric"] = gatewayCostMetric;
            oObj = mo.InvokeMethod("SetGateways", iObj, null);
        }
    }
 
    ///<summary>cortrol</summary>
    ///<param name="ipAddr">IPAddr List</param>
    ///<param name="subnetMask">subnetMask List</param>
    ///<param name="gateways">gateway List</param>
    ///<param name="gatewayCostMetric">gateway CostMetric List, example: 1</param>
    ///<param name="dnsServer">DNSServer List</

param>
    public void ChangeTo(string[] ipAddr, string[] subnetMask, string[] gateways, string[] gatewayCostMetric, string[] dnsServer)
    {
        foreach (ManagementObject mo in moc)
        {
  &nbsp;         if (!(bool)mo["IPEnabled"]) continue;
 
            iObj = mo.GetMethodParameters("EnableStatic");
            iObj["IPAddress"] = ipAddr;
            iObj["SubnetMask"] = subnetMask;
            oObj = mo.InvokeMethod("EnableStatic", iObj, null);
 
            iObj = mo.GetMethodParameters("SetGateways");
            iObj["DefaultIPGateway"] = gateways;

>            iObj["GatewayCostMetric"] = gatewayCostMetric;
            oObj = mo.InvokeMethod("SetGateways", iObj, null);
 
            iObj = mo.GetMethodParameters("SetDNSServerSearchOrder");
            iObj["DNSServerSearchOrder"] = dnsServer;
            oObj = mo.InvokeMethod("SetDNSServerSearchOrder", iObj, null);
        }
    }
 
    ///<summary>DHCPEnabled</summary>
    public void EnableDHCP()
    {
        foreach (ManagementObject mo in moc)
        {
            if (!(bool)mo["IPEnabled"]) continue;
 

ONT-SIZE: 9pt">            if (!(bool)mo["DHCPEnabled"])
            {
                iObj = mo.GetMethodParameters("EnableDHCP");
                oObj = mo.InvokeMethod("EnableDHCP", iObj, null);
            }
        }
    }
}
 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved