怎样在cmd中进行网卡配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在cmd中进行网卡配置相关的知识,希望对你有一定的参考价值。
配置ip网关子网掩码和DNS的命令是什么
netsh interface ip set address "本地连接" static 10.25.35.35 255.255.255.0 10.25.35.7 auto将“本地连接”的ip地址设置成10.25.35.35 子网掩码是255.255.255.0 网关设置成 10.25.35.7 并且自动跃点数
注意:"本地连接"是你需要设置ip的网路连接的名称。
设置DNS命令格式:
netsh interface ip set dns "本地连接" static 211.138.91.1
将“本地连接”的DNS设置成211.138.91.1
删除IP地址和DNS的命令是
netsh interface ip set address "本地连接" dhcp
netsh interface ip set dns "本地连接" dhcp
将ip设置改为自动获取。 参考技术A 设置IP地址和网关:netsh interface ip set address "本地连接" static 192.168.0.2 255.255.255.0 192.168.0.1
设置DNS:netsh interface ip set dns "本地连接" static 202.96.134.133 参考技术B netsh int ip set address name="本地连接 2" static ip地址 子网掩码 网关 1
netsh int ip set dns name="本地连接 2" static DNS地址 参考技术C 你还是在图形界面配置吧。 参考技术D ping abc.com
以上是关于怎样在cmd中进行网卡配置的主要内容,如果未能解决你的问题,请参考以下文章