[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[网络连接] 批处理怎样将动态IP地址改成静态?

我是想把一台自动获取IP地址的电脑改成如图这个一样的IP.能不能上网无所谓..

例子:

修改ip:
netsh interface ip set address "本地连接" static 192.168.1.111 255.255.255.0

修改网关:
netsh interface ip set address "本地连接" static gateway=192.168.1.1 gwmetric=1

修改dns:
netsh interface ip set dns "本地连接" static 202.103.24.68

[ 本帖最后由 bugs 于 2010-11-21 17:55 编辑 ]

TOP

  1. netsh interface ip set address name="本地连接" source=static addr=124.206.197.178 mask=255.255.254.0 gateway=124.206.197.129 gwmetric=1
  2. netsh interface ip set dns name="本地连接" source=static addr=202.106.196.115
复制代码

TOP

返回列表