码迷,mamicode.com
首页 > 其他好文 > 详细

命令行批量修改IP并ping测试

时间:2016-06-26 23:54:20      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

@echo off

set ip=0

:begin
set /a ip=%ip%+1
netsh interface ip set address "本地连接" static 172.20.209.%ip% 255.255.0.0 172.20.209.1
netsh interface ip set dns "本地连接" static 221.228.255.1 primary

ping  172.20.209.1  && goto :write || echo "不通"

:write
echo "===========================">> ip.txt
ping  172.20.209.1>> ip.txt
echo 172.20.209.%ip% >> ip.txt
echo "===========================">> ip.txt
goto :begin

谢谢支持!

可以联系我进行交流。Renhanlinbsl@163.com

2016.6.26

23:21

命令行批量修改IP并ping测试

标签:

原文地址:http://www.cnblogs.com/ives/p/lengxiaobao.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!