zoukankan      html  css  js  c++  java
  • 批处理 自动修改 IP 地址

    公司网络和家里网络不一样,每天回家要改一次IP,来公司要改一次IP ,很是麻烦,故整理了小批处理命令,自动来修改IP。
    将以下内容保存到为bat格式就可以了。
    @echo off
    echo.
    echo 修改ip地址,1为自动获取ip地址,2为修改家里ip地址,3 为公司IP
    echo.set sel=
    set/p sel=请选择修改方式:
    if "%sel%"=="1" goto auto
    if "%sel%"=="2" goto home
    if "%sel%"=="3" goto company
    echo 您没有选择修改方式。
    goto end
    :auto
    netsh interface ip set address name="本地连接" source=dhcp
    netsh interface ip delete dns "本地连接" all
    ipconfig /flushdns
    ipconfig /all
    goto end
    :home
    echo 正在更改IP地址,请稍等......
    netsh interface ip set address name="本地连接" source=static addr=192.168.1.80 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=1
    netsh interface ip set dns name="本地连接" source=static addr=202.102.192.68
    netsh interface ip add dns name="本地连接" addr=202.102.199.68 index=2 
    ipconfig /flushdns
    ipconfig /all
    echo 更改IP地址完成!
    goto end
    :company
    echo 正在更改IP地址,请稍等......
    netsh interface ip set address name="本地连接" source=static addr=10.85.10.80 mask=255.255.255.0 gateway=10.85.10.253 gwmetric=1
    netsh interface ip set dns name="本地连接" source=static addr=218.104.78.2
    netsh interface ip add dns name="本地连接" addr=10.85.7.100 index=2 
    ipconfig /flushdns
    ipconfig /all
    goto end
    :end
    pause
  • 相关阅读:
    mysql学习-变量
    车联网-商业模式思考
    数据质量-备忘录
    对话机器学习大神 Michael Jordan:解析领域中各类模型
    Python 高级编程技巧
    Python-闭包(转载)
    PEP8中文翻译
    python-子类和派生、继承
    ZooKeeper之分布式锁(Python版)
    ssh 代理详细解释
  • 原文地址:https://www.cnblogs.com/datalife/p/1985653.html
Copyright © 2011-2022 走看看