一、使用netsh命令設置IP/DNS
1、自動獲取IP地址:
netsh interface ip set address [name=]"以太網" [source=]dhcp
2、手動設置IP地址:例如設置 IP 為 192.168.1.198,掩碼為255.255.255.0,網關為192.168.0.254,那麼 cmd 命令為:
netsh interface ip set address [name=]"本地連接" [source=]static [addr=]192.168.1.198 [mask=]255.255.255.0 [gateway=]192.168.0.254 [gwmetric=]1
name:網絡連接名稱,一般為“本地連接”。你可以在“控制面闆” -> “網絡連接”中看到
source:獲取 IP 的途徑。動态獲取,則為 dhcp;手動設置,則為 static
addr:要設置的 IP 地址
mask:要設置的子網掩碼
gateway:要設置的網關地址
gwmetric:網關躍點數,可以設置為整型數值,也可以設置為 auto
二、使用netsh命令連接wifi
1、顯示本機保存的 profiles,配置文件是以 wifi 的 ssid 命名的:
netsh WLAN show profiles
2、然後連接其中一個 profile:
netsh wlan connect name=xxxxx
3、斷開連接
netsh wlan disconnect [[interface=]<string>]
如果系統中有兩個或多個可用接口,則參數 interface 是必需的,否則無需指定參數 interface。可以在接口名稱中使用通配符字符以便指定多個接口。
三、netsh wlan幫助信息
四、其他netsh命令
其它常用的 netsh 命令:
設置配置文件屬性:Netsh WLAN set profileparameter name="" connectionmode=manual
列出配置文件:netsh wlan show profile
導出配置文件:netsh wlan export profile key=clear
删除配置文件:netsh wlan delete profile name=""
添加配置文件:netsh wlan add profile filename=""
連接指定wifi:netsh wlan connect name="wifi name"
列出無線接口:netsh wlan show interface
開啟無線接口:netsh interface set interface "Interface Name" enabled
禁用無線接口:netsh interface set interface "Interface Name" disable
五、使用netsh命令查看所有連接過的WIFI密碼
輸入命令:netsh wlan show profiles name="profileName" key=clear,就可以查看到某個具體 WiFi 的配置詳情,包括密碼。
,更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!