网络命令学习基础之在cmd下更改ip地址

时间:2022-06-01 18:40:33

windows server的cmd下更改ip地址(Windows 2000/2003 Server )的方法如下:

括号里是一些注释,黑体字是人工录入的:

  1. C:\>ipconfig (首先用ipconfig这个命令看一下更改之前的ip地址)   
  2.  
  3. Windows 2000 IP Configuration   
  4.  
  5. Ethernet adapter 本地连接:   
  6.  
  7. Connection-specific DNS Suffix . :   
  8.  
  9. IP Address. . . . . . . . . . . . : 10.1.1.94 (本地连接更改之前的ip)   
  10.  
  11. Subnet Mask . . . . . . . . . . . : 255.255.255.0   
  12.  
  13. Default Gateway . . . . . . . . . : 10.1.1.254   
  14.  
  15. C:\>netsh (进入设置模式)   
  16.  
  17. netsh>interface   
  18.  
  19. interface>ip   
  20.  
  21. interface ip>set address "本地连接" static 10.1.1.111 255.255.255.0 10.1.1.254   
  22.  
  23. interface ip>exit  

上文中的set命令具体解释如下: 

set address - 设置指定的接口的 IP 地址和默认网关。

set dns - 设置 DNS 服务器模式和地址。

set wins - 设置 WINS 服务器模式和地址。

  1. C:\>ipconfig (更改后再用ipconfig命令看一下,确认一下是否更改成功)   
  2.  
  3. Windows 2000 IP Configuration   
  4.  
  5. Ethernet adapter 本地连接:   
  6.  
  7. Connection-specific DNS Suffix . :   
  8.  
  9. IP Address. . . . . . . . . . . . : 10.1.1.111   
  10.  
  11. Subnet Mask . . . . . . . . . . . : 255.255.255.0   
  12.  
  13. Default Gateway . . . . . . . . . : 10.1.1.254  

命令一览 

.. - 移到上一层上下文级。

? - 显示命令列表。

aaaa - 更改到 `aaaa` 上下文。

abort - 丢弃在脱机模式下所做的更改。

add - 将一个配置项添加到项目列表中。

alias - 添加一个别名

bye - 退出程序。

commit - 提交在脱机模式中所做的更改。

delete - 在项目列表上删除一个配置项目。

dhcp - 更改到 `dhcp` 上下文。

dump - 显示一个配置脚本。

exec - 运行一个脚本文件。

exit - 退出程序。

help - 显示命令列表。

interface - 更改到 `interface` 上下文。

offline - 将当前模式设置成脱机。

online - 将当前模式设置成联机。

popd - 从堆栈上打开一个上下文。

pushd - 将当前上下文放推入堆栈。

quit - 退出程序。

ras - 更改到 `ras` 上下文。

routing - 更改到 `routing` 上下文。

set - 更新配置设置。

show - 显示信息

unalias - 删除一个别名。

wins - 更改到 `wins` 上下文。

windows server的cmd下更改ip地址的方法就为大家介绍完了,希望大家已经学会和掌握了。