我正在尝试使用以下netsh命令将我的IP地址更改为静态IP地址:netsh interface ip set address name =“Wi-Fi”static x.x.x.x 255.255.255.0 x.x.x.x 1
但这只会更改我的默认网关,不会影响其他任何内容。有时它甚至不会影响网关。结果如下:
我究竟做错了什么?
您可以尝试并明确声明所有值:
netsh interface ip set address name="Wi-Fi" source=static addr=x.x.x.x mask=255.255.255.0 gateway=x.x.x.x 1