zoukankan      html  css  js  c++  java
  • bat 设置 IP, 清除IP

    设置本地连接IP:

    1
    2
    3
    4
    5
    6
    7
    8
    @echo off
    @echo IP Address is setting... ...
    netsh interface ip set address "本地连接" static 10.1.53.128 255.255.255.0 10.1.53.253
    @echo 【IP地址、子网掩码、网关】配置完成!
    netsh interface ip set dns "本地连接" static 61.128.114.133
    netsh interface ip add dns "本地连接" 8.8.8.8 index=2
    @echo 【DNS服务器地址】 配置完成!
    pause

    清除本地连接IP:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    echo off
    cls
    title 清除IP设置
    echo 正在清除IP地址,请稍候……
    netsh interface ip set address name="本地连接" source=dhcp
    echo 正在清除DNS设置,请稍候……
    netsh interface ip set dns name="本地连接" source=dhcp
    echo 删除IP设置,设置为自动。
    echo            ***************    恭喜你,命令成功完成!*************
    pause

    设置无线连接IP:

    1
    2
    3
    4
    5
    6
    7
    8
    @echo off
    @echo IP Address is setting... ...
    netsh interface ip set address "无线网络连接" static 192.168.11.119 255.255.255.0 192.168.11.254
    @echo 【IP地址、子网掩码、网关】配置完成!
    netsh interface ip set dns "无线网络连接" static 61.128.114.133
    netsh interface ip add dns "无线网络连接" 8.8.8.8 index=2
    @echo 【DNS服务器地址】 配置完成!
    pause

    清除无线连接IP:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    echo off
    cls
    title 清除IP设置
    echo 正在清除IP地址,请稍候……
    netsh interface ip set address name="无线网络连接" source=dhcp
    echo 正在清除DNS设置,请稍候……
    netsh interface ip set dns name="无线网络连接" source=dhcp
    echo 删除IP设置,设置为自动。
    echo            ***************    恭喜你,命令成功完成!*************
    pause










  • 相关阅读:
    Eclipse 3.7 安装Maven插件时报错:requires 'bundle org.slf4j.api 1.6.2' but it could not be found
    Windows下IIS+PHP5.3.x ZendGuardLoader的配置方法
    IIS7.x运行PHP
    顺手的Linux发行版及其工具推荐
    nc 简单的使用
    nginx日志简单分析工具
    批量转换cue文件编码
    Linux Tweak:交换 Caps_Lock 与 Control_R
    Word 2013测试
    start running 开始跑步减肥
  • 原文地址:https://www.cnblogs.com/tinypeng/p/3407905.html
Copyright © 2011-2022 走看看