0

我正在尝试使用以下 netsh 命令将我的 IP 地址更改为静态 IP 地址:netsh interface ip set address name="Wi-Fi" static xxxx 255.255.255.0 xxxx 1

但这只会改变我的默认网关,不会影响其他任何东西。有时它甚至不影响网关。结果如下所示:

http://puu.sh/4ouAQ.png

我究竟做错了什么?

4

1 回答 1

0

您可以尝试明确声明所有值:

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
于 2013-09-11T08:37:32.503 回答