如何通过批处理文件向接口添加其他 IP 地址

如何通过批处理文件向接口添加其他 IP 地址

我已经通过以下方式为我的 LAN 接口分配了 IP 地址

netsh int ip set address "LAN" static 192.168.0.99 255.255.255.0 192.168.0.1

现在我想将192.168.4.20网关添加192.168.4.1到同一个接口不会覆盖现有 IP 地址

我如何通过批处理文件做到这一点?

答案1

根据此网址可以通过以下方式实现:

netsh in ip add address "Local Area Connection" 172.16.1.2 255.255.0.0

(netsh int ip添加而不是 netsh int ip)。

答案2

您可以像下面这样添加第二个 IP 地址:

netsh interface ip set address "Wi-Fi" static 10.0.0.5 255.255.255.0 10.0.0.1 
netsh interface ip add address "Wi-Fi" 192.168.1.51 255.255.255.0 
netsh interface ip set dns "Wi-Fi" static 8.8.8.8
netsh interface ip add dns "Wi-Fi" 8.8.4.4

相关内容