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










  • 相关阅读:
    vue 组件的简单使用01
    vue 绑定 class 和 内联样式(style)
    input select 值得绑定与获取
    computed 计算属性
    v-for 循环 绑定对象 和数组
    过滤器 filter
    v-model 双向数据绑定以及修饰符
    v-on 绑定单个或多个事件
    v-bin:href 绑定链接
    .net core自动发送后台请求写法
  • 原文地址:https://www.cnblogs.com/tinypeng/p/3407905.html
Copyright © 2011-2022 走看看