1. 首先要查看一下网卡的设备名称
netsh interface ip show interfaces
结果为:
记住当前的网卡名称 进行后续操作.
其实 也可以通过 ipconfig /all 的方式来查看 网卡的地址
2. 给当前网卡设置ip地址
netsh interface ip set address "Ethernet0 2" source=static 10.24.101.19 255.255.0.0 10.24.255.254
设置DNS
netsh interface ip set dnsservers "Ethernet0 2" static 10.110.1.13
给改网卡增加第二个ip地址
netsh interface ip add address "Ethernet0 2" 10.24.101.18 255.255.0.0
然后查看网卡的信息就能够看到了