netsh设置ip地址错误

时间:2011-11-01 10:19:07

标签: windows-xp netsh

我想使用netsh设置IP地址,子网和网关。我的计算机上安装了Windows XP。 当我输入命令时:

set address "Local Area Connection" static ipAdd sub gateway

我收到此错误:

  

环境变量地址“本地连接”静态ipAdd子网关未定义

当我输入:

netsh interface ip  set address "Local Area Connection" static ipAdd sub gateway

我得到了一个不同的错误:

the following command was not found.

DNS和WINS详细信息已成功设置,我可以通过在Internet协议面板中键入来设置IP设置。

1 个答案:

答案 0 :(得分:1)

通过netsh设置ip address命令的正确语法是:

netsh interface ip set address name="Local Area Connection" static 192.168.0.20 255.255.255.0 192.168.0.1 1

并使用下一行设置dns:

netsh interface ip set dns "Local Area Connection" static 192.168.0.200 primary

添加辅助dns:

netsh interface ip add dns "Local Area Connection" 192.168.0.201 index=2

这里是a link