利用一个批处理文件设置ip地址
假如将ip地址设置为192.168.1.8 子网掩码为255.255.255.0 网关为192.168.1.1
主DNS为202.96.128.68 备用DNS为202.96.128.166
那么只需把下列文件内容拷贝到一个记事本中,然后把扩展名改为.bat ,运行这个bat文件即可:
echo off
cls
title 设置IP
echo 正在设置IP地址,请稍候……
netsh interface ip set address "本地连接" static 192.168.1.8 255.255.255.0 192.168.1.1 1
echo 正在更改DNS设置,请稍候……
netsh interface ip set dns "本地连接" static 202.96.128.68 primary
netsh interface ip add dns name = "本地连接" addr=202.96.128.166
echo ******恭喜你,修改完成!******
pause
清空IP地址设置,设置为自动获取IP地址:
echo off
cls
title 清除IP设置
echo 正在清除IP地址,请稍候……
netsh interface ip set address name="本地连接" source=dhcp
echo 正在清除DNS设置,请稍候……
netsh interface ip set dns name="本地连接" source=dhcp
echo 删除IP设置,设置为自动。
echo *************** 恭喜你,命令成功完成!*************
pause
|
|