您现在的位置是:网站首页 > 学无止境

windows系统下ip地址无法修改

ImdaM 2020-04-14 11:53:05 0人围观
简介windows系统下ip地址无法修改,亲测2种可行的方法,分享给大家。

windows系统下ip地址无法修改,亲测2种可行的方法,分享给大家。

:: 注释

1.cmd方式
:: 管理员身份-->cmd
:: 输出以下:

netsh interface ip set address "本地链接33" static 192.168.207.222 255.255.255.0 192.168.207.1

:: 2.bat批处理脚本

@echo off
set name=”本地连接33”
set ipaddress=192.168.207.200
set mask=255.255.255.0
set gateway=192.168.1.1
netsh interface ip set address name=%name% source=static addr=%ipaddress% mask=%mask% gateway=%gateway% 1
echo 正在添加本机主DNS...
:: netsh interface ip set dns name=”本地连接33” source=dhcp
netsh interface ip set dns "本地连接33" static 18.0.0.10 primary
echo 正在添加本机副DNS...
netsh interface ip add dns "本地连接33" 18.0.0.10
echo 设置完成...

上一篇:零基础学算法 戴艳 学习笔记

下一篇:Thinkphp3.2.3 thinkphp5.0 TP3.2 tp5.1区别

文章评论