如下参考:
1.首先,我们在桌面上创建一个新的记事本文件,并使其扩展名显示出来(前面的经验已经说明了方法),从图中可以看到扩展名是.txt。
2.然后我们将文件名更改为“ip”。“bat”之类的,但扩展名必须是bat。
3.右键点击文件,从快捷菜单中选择“编辑”。
4.打开文件,你可以看到它仍然是一个记事本的形式,我们在里面编辑。
5.在文件源码中输入如下代码:知道静态10.31.51.188是指填写的静态IP地址,255.255.255.0是子网掩码,10.31.51.1是网关地址。然后下面是设置DNS,主是首选的DNS标志意思,我们保存文件。
6.双击ip。一个DOS执行窗口将d出,设置将迅速改变。
7.最后,我们将检查IP地址。他们已经被成功地填上了。如果有多台计算机,可以使用u盘复制批处理,然后在每台计算机上执行。
@echo offnetsh interface ip set address name="本地连接" source=static addr=10.10.10.1 mask=255.255.255.0
netsh interface ip set address name="本地连接" gateway=110.10.10.2 gwmetric=0
netsh interface ip set dns name="本地连接" source=static addr=10.10.10.3 register=PRIMARY
netsh interface ip add dns name="本地连接" addr=10.10.10.4
netsh interface ip set wins name="本地连接" source=static addr=none
第二行:设置本地连接的ip地址为:10.10.10.1,子网掩码为:255.255.255.0
第三行:设置网关为110.10.10.2
第四行:设置主dns为10.10.10.3
第五行:设置备份dns为10.10.10.4
如果你只更改ip,留第二行就行了.
PS:"本地连接"你是的连接名称,你的是啥名称就改为啥,一般默认是"本地连接"..
@echooff
echo
"请输入1,IP修改为:192.168.1.221"
echo
"请输入2,IP修改为:192.168.0.221"
set
/p
var="请选择需要设置的IP[1或2]:"
if
%var%==1
(
netsh
interface
ip
set
address
本地连接
static192.168.1.221
255.255.255.0
192.168.1.1
1
netsh
interface
ip
set
dns
本地连接
static
218.6.200.139
primary
netsh
interface
ip
add
dns
本地连接
61.139.2.69
)
if
%var%==2
(
netsh
interface
ip
add
address
本地连接
192.168.0.221
255.255.255.0
192.168.0.1
1
netsh
interface
ip
set
dns
本地连接
static
218.6.200.139
primary
netsh
interface
ip
add
dns
本地连接
61.139.2.69
)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)