本地连接bat脚本
Posted 不求甚解
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地连接bat脚本相关的知识,希望对你有一定的参考价值。
1设置静态ip地址
(1) netsh interface ip set address name=“网络名” source=static addr=ip地址 mask=子网掩码 gateway=默认网关
例如:netsh interface ip set address name=“以太网” source=static addr=172.172.172.147 mask=255.255.255.0 gateway=172.172.172.1
(2)netsh interface ip set address “网络名” static ip地址 子网掩码 默认网关
例如:netsh interface ip set address “以太网” static 172.172.172.147 255.255.255.0 172.172.172.1
2设置动态获取ip地址
(1)netsh interface ip set address 网络名 dhcp
例如:netsh interface ip set address “以太网” dhcp
(2)netsh interface ip set address name=“网络名” source=dhcp
例如:netsh interface ip set address name=“以太网” source=dhcp
3设置DNS服务器
(1)netsh interface ip set dns “网络名” static 地址
例如:netsh interface ip set dns “以太网” static 114.114.114.114
批处理脚本
@echo off netsh interface ip set address name="本地连接" source=dhcp netsh interface ip set dns name="本地连接" dhcp
静态批处理脚本
@echo off netsh interface ip set address name="本地连接" source=static addr=111.111.112.22 mask=255.255.255.0 gateway=111.111.112.254 netsh interface ip set dns name="本地连接" static 111.111.110.250
以上是关于本地连接bat脚本的主要内容,如果未能解决你的问题,请参考以下文章