BAT脚本设置静态IP和DHCP
时间:2021-10-9 9:42
热度:1446°
评论:0 条
在操作系统下,可以使用“本地连接”的属性来修改IP地址,但是如果我们要在多个IP地址之间切换,使用这种方法未免过于麻烦。可以使用NETSH命令来添加,相当简便。使用DOS修改IP地址方法如下:
netsh interface ip set address参数说明:
1.name:网络连接名称,一般为“本地连接”。可以在“控制面板”->“网络连接”中看到。
2.source:获取IP的途径。动态获取,则为dhcp,手动设置,则为static。
3.addr:要设置的IP地址。
4.mask:子网掩码。
5.gateway:网关地址。
6.gwmetric:网关跃点数,可以设置为整型数值,也可以设置为“自动”:auto。
netsh interface ip set dns参数说明:
1.name:网络连接名称,一般为“本地连接”。你可以在“控制面板”->“网络连接”中看到。
2.source:获取IP的途径。动态获取,则为dhcp,手动设置,则为static。
3.addr:要设置的IP地址。
4.register:
5.none: 禁用动态 DNS 注册。
6.primary: 只在主 DNS 后缀下注册。
7.both: 在主 DNS 后缀下注册,也在特定连接后缀下注册。
8.index:设置的DNS的顺序号。
脚本示例:
echo 设置静态IP地址和DNS netsh interface ip set address "以太网" static 192.168.1.137 255.255.255.0 192.168.1.1 netsh interface ip set dns "以太网" static 192.168.1.1 register=primary netsh interface ip add dns "以太网" 114.114.114.114 echo 设置IP地址和DNS为自动获取 netsh interface ip set address name="以太网" source=dhcp netsh interface ip set dns name="以太网" source=dhcp
捐赠支持:如果觉得这篇文章对您有帮助,请“扫一扫”鼓励作者!
相关文章
本文无需标签!
本文作者:皮皮华
文章标题: BAT脚本设置静态IP和DHCP
本文地址:http://huazai.eleuu.com/?post=43
版权声明:若无注明,本文皆为“皮皮华博客”原创,转载请保留文章出处。
本文地址:http://huazai.eleuu.com/?post=43
版权声明:若无注明,本文皆为“皮皮华博客”原创,转载请保留文章出处。
发表吐槽
你肿么看?
既然没有吐槽,那就赶紧抢沙发吧!