#windows常用網(wǎng)絡(luò)命令
#查看本地網(wǎng)卡接口信息
ipconfig /all
#ping(常用于測(cè)試網(wǎng)絡(luò)連通性)
ping www.baidu.com
#路由相關(guān)
#1.查看路由表(其中0.0.0.0記錄為默認(rèn)路由配置)
route print
#2.添加路由(如果添加-p參數(shù)可表示添加永久路由)
route add 192.168.1.0 maks 255.255.255.0 192.168.1.11
#3.刪除路由
route delete 192.168.1.0
#4.跟蹤路由
tracert www.baidu.com
#地址解析(ip地址到mac地址的映射)
arp -a
#網(wǎng)絡(luò)配置(網(wǎng)絡(luò)連接命令行配置接口)
#導(dǎo)出本地網(wǎng)絡(luò)連接配置信息
netsh interface ip dump > d:/netConfig.txt
#導(dǎo)入網(wǎng)絡(luò)配置
netsh exec d:/netConfig.txt
#設(shè)置本地連接通過(guò)dhcp自動(dòng)配置
netsh interface ip set address "本地連接" duhp
#設(shè)置本地連接靜態(tài)IP
netsh interface ip set address "本地連接" static 192.168.1.11 255.255.255.0 192.168.1.1
#查看域名信息(可以得到域名對(duì)應(yīng)的ip地址)
nslookup baidu.com