我需要在运行 Windows 7 的计算机上设置多个 IP,因此我的计算机位于网络 192.168.0.x 和 192.168.1.x 中
我只有一个网络接口,我知道这可以通过使用以下 cmd 创建别名的 linux 轻松完成
sudo ifconfig eth0:0 192.168.1.11 up
那么有没有办法在 Windows 中使用命令行来做到这一点?感谢您的时间
答案1
你可以用类似的东西来做到这一点
netsh interface ipv4 add address
所以:
netsh interface ipv4 add address “Local Area Connection” 192.168.1.11 255.255.255.0
看http://www.howtogeek.com/51741/how-to-quickly-add-multiple-ip-addresses-to-windows-servers/