我想做个批处理文件,一运行就能够自动改ip
我想做个批处理文件,一运行就能够自动将IP改为:146.222.57.202子网掩码改为:255.255.255.0网关改为:146.222.57.195DNS改为:20...
我想做个批处理文件,一运行就能够自动将IP改为:146.222.57.202
子网掩码改为:255.255.255.0
网关改为:146.222.57.195
DNS改为:202.101.44.125
这应该怎么做呢? 展开
子网掩码改为:255.255.255.0
网关改为:146.222.57.195
DNS改为:202.101.44.125
这应该怎么做呢? 展开
1个回答
展开全部
@echo off
netsh interface ip set address name="本地连接" source=static addr=10.10.10.1 mask=255.255.255.0
//设置本地连接的ip地址为:10.10.10.1,子网掩码为: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
//设置主dns
netsh interface ip add dns name="本地连接" addr=10.10.10.4
//设置备份dns
netsh interface ip set wins name="本地连接" source=static addr=none
//设置wins
netsh interface ip set address name="本地连接" source=static addr=10.10.10.1 mask=255.255.255.0
//设置本地连接的ip地址为:10.10.10.1,子网掩码为: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
//设置主dns
netsh interface ip add dns name="本地连接" addr=10.10.10.4
//设置备份dns
netsh interface ip set wins name="本地连接" source=static addr=none
//设置wins
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询