For Each objNetAdapter in colNetAdapters
If Isarray(arrIPAddress) And Isarray(arrSubnetMask) Then objNetAdapter.EnableStatic arrIPAddress,arrSubnetMask
If Isarray(arrGateway) Then objNetAdapter.SetGateways arrGateway
If Isarray(arrDNS) Then objNetAdapter.SetDNSServerSearchOrder arrDNS
Next
多个网卡设置为同一个ip? linux支持多网卡共享单个ip,windows好像不支持吧
如果想为每个网卡设置一个ip可以先使用wmic获取活动的网卡的名称,然后再使用netsh interface ip set address 设置ip
获取网卡名称:wmic nic where "NetConnectionStatus=2" get NetConnectionID
设置ip:netsh interface ip set address "%x%" static 192.168.1.100 255.255.255.0 192.168.1.1
x是上面wmic获取的网卡名称