ipconfig命令的使用
ipconfig命令是用来显示网络接口的配置信息即显示所有当前的 TCP/IP 网络配置值、刷新动态主机配置协议 (DHCP) 和域名系统 (DNS) 设置。
ipconfig命令的参数有:/all   ;  /renew  ;  /release  ;   /flushdns  ;  /displaydns  ;  /registerdns  ;  /showclassid Adapter  ;  /setclassid Adapter [ClassID]
ipconfig单独使用
C:\>ipconfig
Windows IP Configuration
Ethernet adapter 本地连接:
        Connection-specific DNS Suffix  . : router
        IP Address. . . . . . . . . . . . : 192.168.0.2           显示适配器的ip地址
       Subnet Mask . . . . . . . . . . . : 255.255.255.0     子网掩码
       Default Gateway . . . . . . . . . : 192.168.0.1        默认网关
/all : 显示所有适配器完整的TCP/IP信息
C:\>ipconfig /all
Windows IP Configuration
        Host Name . . . . . . . . . . . . : PC-200909212245
        Primary Dns Suffix  . . . . . . . :
        Node Type . . . . . . . . . . . . : Unknown
        IP Routing Enabled. . . . . . . . : No
        WINS Proxy Enabled. . . . . . . . : No
        DNS Suffix Search List. . . . . . : router
Ethernet adapter 本地连接:
        Connection-specific DNS Suffix  . : router
        Description . . . . . . . . . . . : Realtek RTL8168/8111 PCI-E Gigabit E
thernet NIC                                                                             对网卡的描述
       Physical Address. . . . . . . . . : 00-1F-D0-D2-E7-A0   物理地址
       Dhcp Enabled. . . . . . . . . . . : Yes                                  Dhcp激活
       Autoconfiguration Enabled . . . . : Yes                         自动配置开启
       IP Address. . . . . . . . . . . . : 192.168.0.2                           IP地址
       Subnet Mask . . . . . . . . . . . : 255.255.255.0                   子网掩码
       Default Gateway . . . . . . . . . : 192.168.0.1                      默认网关
       DHCP Server . . . . . . . . . . . : 192.168.0.1                          DHCP服务器
       DNS Servers . . . . . . . . . . . : 192.168.0.1                           DNS服务器
       Lease Obtained. . . . . . . . . . : 2009年10月5日 21:48:35  获得租约时间
       Lease Expires . . . . . . . . . . : 2009年10月12日 21:48:35    租约到期时间
/renew +适配器: 更新所有适配器(如果未指定适配器),或特定适配器(如果包含了 Adapter 参数)的 DHCP 配置。该参数仅在具有配置为自动获取 IP 地址的适配器的计算机上可用 
/release+适配器: 发送 DHCPRELEASE 消息到 DHCP 服务器,以释放所有适配器(如果未指定适配器)或特定适配器(如果包含了 Adapter 参数)的当前 DHCP 配置并丢弃 IP 地址配置
/flushdns :  刷新并重设DNS 客户解析缓存的内容,排错时可能用到
C:\>ipconfig /flushdns
Windows IP Configuration
Successfully flushed the DNS Resolver Cache.
/displaydns  :显示 DNS 客户解析缓存的内容 
C:\>ipconfig /displaydns
Windows IP Configuration
         7939.com
         ----------------------------------------
         Record Name . . . . . : 7939.com
         Record Type . . . . . : 1
         Time To Live  . . . . : 592201
         Data Length . . . . . : 4
         Section . . . . . . . : Answer
         A (Host) Record . . . : 127.0.0.1
 
/registerdns  : 初始化计算机上配置的 DNS 名称和 IP 地址的手工动态注册
/showclassid Adapter  : 显示指定适配器的 DHCP 类别 ID
/setclassid Adapter [ClassID] : 配置特定适配器的 DHCP 类别 ID
/?:显示ipconfig的帮助信息
 Options:
  /?           Display this help message
  /all         Display full configuration information.
  /release     Release the IP address for the specified adapter.
  /renew       Renew the IP address for the specified adapter.
  /flushdns    Purges the DNS Resolver cache.
 /registerdns Refreshes all DHCP leases and re-registers DNS names
  /displaydns  Display the contents of the DNS Resolver Cache.
  /showclassid Displays all the dhcp class IDs allowed for adapter.
  /setclassid  Modifies the dhcp class id.
 
对于ipconfig的参数,本人认为ipconfig单独使用和ipconfig /all以及ipconfig /release  ipconfig /renew 比较常用!写的有点多,希望能对想了解的朋友有用!