欢迎来到入门教程网!

DOS/BAT

当前位置:主页 > 脚本语言 > DOS/BAT >

使用批处理命令设置windows系统的ip地址和dns附图

来源:本站原创|时间:2020-01-10|栏目: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
确定。

相当于操作:

上一篇:Windows WMIC命令使用详解(附实例)

栏    目:DOS/BAT

下一篇:用winrar和ftp命令实现自动备份文件并自动上传到指定的ftp服务器

本文标题:使用批处理命令设置windows系统的ip地址和dns附图

本文地址:https://www.xiuzhanwang.com/a1/DOS_BAT/10186.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有