知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > 批处理

windows命令行设置IP与DNS

发布时间:2014-09-27 17:31:34作者:知识屋

 

@1.设置动态IP(DHCP自动获取IP)

 

 

netsh interface ip set address "本地连接" dhcp 

@2.设置指定的IP,此处以设置本机IP为10.16.15.226,子网掩码为255.255.255.0,网关IP为10.16.15.1为例

 

 

 

netsh interface ip set address "本地连接" static 10.16.15.226 255.255.255.0 10.16.15.1 

@3.设置动态DNS(DHCP自动获取DNS)

 

 

netsh interface ip set dns "本地连接" dhcp 

@4.设置指定的DNS,此处以设置DNS为210.45.240.10为例

 

 

netsh interface ip set dns "本地连接" 210.45.240.10   

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜