zoukankan      html  css  js  c++  java
  • dos 改 ip

    在DOS下修改IP- -
                                          

    1,netsh实现在命令下改ip地址..

    D:\>netsh
    netsh>interface
    interface>ip
    interface ip>dump


    # ----------------------------------
    # Interface IP Configuration
    # ----------------------------------
    pushd interface ip


    # Interface IP Configuration for "Local Area Connection"

    set address name = "Local Area Connection" source = static addr = 192.168.0.1 ma
    sk = 255.255.255.0
    set address name = "Local Area Connection" gateway = 192.168.0.1 gwmetric = 1
    set dns name = "Local Area Connection" source = static addr = 192.168.0.1
    set wins name = "Local Area Connection" source = static addr = none


    popd
    # End of interface IP configuration


    interface ip>


    2.用netshe -c 可以把网卡配置情况导出。。


    D:\>netsh -c interface ip dump >config.txt

    D:\>type config.txt


    # ----------------------------------
    # Interface IP Configuration
    # ----------------------------------
    pushd interface ip


    # Interface IP Configuration for "Local Area Connection"

    set address name = "Local Area Connection" source = static addr = 192.168.0.1 ma
    sk = 255.255.255.0
    set address name = "Local Area Connection" gateway = 192.168.0.1 gwmetric = 1
    set dns name = "Local Area Connection" source = static addr = 192.168.0.1
    set wins name = "Local Area Connection" source = static addr = none


    popd
    # End of interface IP configuration


    3. 在命令行下。改变网卡的地址。

    首先选用netsh -c interface ip dump > config.txt 输出一个文件,

    然后打开config.txt 修改其中的地址。。

    然后用命令:

    netsh -f d:\config.txt 就OK了!

  • 相关阅读:
    Java类加载机制
    Java内存模型
    遍历集合的常见方式,排序,用lambda表示是怎样的
    包和访问权限修饰符,.单例设计模式,.Object类常用方法,.内部类
    接口
    继承
    面向对象的四大特征 封装 继承 多态 抽象
    面向对象
    二维数组及Arrays工具类
    数组(冒泡,选择,排序)
  • 原文地址:https://www.cnblogs.com/cloud/p/285179.html
Copyright © 2011-2022 走看看