首页 > 系统服务 > 详细

windows使用netsh设置静态&动态ip的脚本

时间:2015-12-12 15:11:46      阅读:189      评论:0      收藏:0      [点我收藏+]
使用netsh设置静态ip地址:

复制代码
代码如下:

@echo off
netsh interface ip set address "本地连接" static 172.24.83.239 255.255.255.0 172.24.83.247
netsh interface ip set dns "本地连接" 172.24.102.110
netsh interface ip add dns "本地连接" 172.24.102.110 index=2
pause

使用netsh设置动态ip地址:

复制代码
代码如下:

@echo off
netsh interface ip set address name="本地连接" source=dhcp
netsh interface ip set dns name="本地连接" source=dhcp
pause

windows使用netsh设置静态&动态ip的脚本

原文:http://www.jb51.net/os/windows/81848.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!