win7设置ip地址

要将指定适配器的静态地址切换为 DHCP 地址,请键入以下命令: 

netsh interface ip set address "本地连接" dhcp

注意:键入此命令会将名为"本地连接"的接口更改为 DHCP。 

要显示计算机中的所有适配器及其当前 IP 地址,以确定正确的适配器名称,请键入以下命令: 

Netsh interface ip show config

要更改为静态地址,请键入以下命令: 

netsh interface ip set address "本地连接" static  IP  掩码  网关  跃点数

如:

netsh interface ip set address "本地连接" static 192.168.0.10 255.255.255.0 192.168.0.1 1

更改DNS为192.168.0.1:

netsh interface ip set DNS  "本地连接" static 192.168.0.1

删除网关:

netsh interface ip delete address "本地连接" gateway=all

删除DNS:

netsh interface ip delete dns "本地连接" all

如果执行配置时提示"指定了无效的接口",则请您开启系统的"Remote Registry Service"服务。

控制面板-->管理工具-->服务-->开启Remote Registry Service

你可能感兴趣的:(win7设置ip地址)