您现在的位置是:网站首页> 编程资料编程资料
使用批处理命令设置windows系统的ip地址和dns附图_DOS/BAT_
2023-05-25
388人已围观
简介 使用批处理命令设置windows系统的ip地址和dns附图_DOS/BAT_
找到对应的网卡名称
使用命令:ipconfig
ipconfig/all
Windows IP Configuration
Host Name . . . . . . . . . . . . : D501-4-3
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
Ethernet adapter 本地连接:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Marvell Yukon 88E8057 PCI-E Gigabit
Ethernet Controller
Physical Address. . . . . . . . . : 44-37-E6-1D-5B-F1
Dhcp Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.1.111
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
DNS Servers . . . . . . . . . . . : 8.8.8.8
我们现在需要设置的网卡名称为"本地连接",ip地址为192.168.1.111,子网掩码为255.255.255.0,dns地址为8.8.8.8
将ip和dns设置为自动获取
使用命令:
netsh interface ip set address "本地连接" dhcp
netsh interface ip set dns "本地连接" dhcp
netsh interface ip set address "本地连接" dhcp
确定。
netsh interface ip set dns "本地连接" dhcp
确定。
相当于操作:
将ip和dns设置为固定的值
使用命令:
netsh interface ip set address "本地连接" static [ip地址] [子网掩码] [网关] [网关跳远点数:一般填1]
netsh interface ip set dns "本地连接" static [dns地址]
netsh interface ip set address "本地连接" static 192.168.1.111 255.255.255.0 192
.168.1.1 1
确定。
netsh interface ip set dns "本地连接" static 8.8.8.8
确定。
相当于操作:
使用命令:ipconfig
复制代码 代码如下:
ipconfig/all
Windows IP Configuration
Host Name . . . . . . . . . . . . : D501-4-3
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
Ethernet adapter 本地连接:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Marvell Yukon 88E8057 PCI-E Gigabit
Ethernet Controller
Physical Address. . . . . . . . . : 44-37-E6-1D-5B-F1
Dhcp Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.1.111
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
DNS Servers . . . . . . . . . . . : 8.8.8.8
我们现在需要设置的网卡名称为"本地连接",ip地址为192.168.1.111,子网掩码为255.255.255.0,dns地址为8.8.8.8
将ip和dns设置为自动获取
使用命令:
netsh interface ip set address "本地连接" dhcp
netsh interface ip set dns "本地连接" dhcp
复制代码 代码如下:
netsh interface ip set address "本地连接" dhcp
确定。
netsh interface ip set dns "本地连接" dhcp
确定。
相当于操作:
将ip和dns设置为固定的值
使用命令:
netsh interface ip set address "本地连接" static [ip地址] [子网掩码] [网关] [网关跳远点数:一般填1]
netsh interface ip set dns "本地连接" static [dns地址]
复制代码 代码如下:
netsh interface ip set address "本地连接" static 192.168.1.111 255.255.255.0 192
.168.1.1 1
确定。
netsh interface ip set dns "本地连接" static 8.8.8.8
确定。
相当于操作:
相关内容
- BAT 参数去引号(各种去引号的奇葩方式)_DOS/BAT_
- bat 传递超过10个参数的情况_DOS/BAT_
- 使用BAT批处理在RAR压缩文件中批量添加文件的方法_DOS/BAT_
- 改变cmd命令提示符颜色的3个小技巧_DOS/BAT_
- 批处理中常用命令介绍(Echo、rem、goto、call、pause、if、for)_DOS/BAT_
- 批处理中的echo命令图文详解_DOS/BAT_
- 批处理的图形界面实现方法小结_DOS/BAT_
- 使用BAT批处理执行sql语句的代码_DOS/BAT_
- mshta命令用法示例_DOS/BAT_
- 用winrar和ftp命令实现自动备份文件并自动上传到指定的ftp服务器_DOS/BAT_
