netsh命令更改为静态IP只更改我的默认网关?

问题描述 投票:0回答:1

我正在尝试使用以下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

但这只会更改我的默认网关,不会影响其他任何内容。有时它甚至不会影响网关。结果如下:

我究竟做错了什么?

command-line static window ip netsh
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
© www.soinside.com 2019 - 2024. All rights reserved.