1. 程式人生 > >Windows實用命令

Windows實用命令

緩存 添加 -s 刷新dns緩存 命令 例如 man 統計行數 consola

Windows實用命令 # 統計ESTABLISHED狀態下的連接一共有多少個/c是統計行數,/i是忽略大小寫 技術分享圖片
netstat -ano|find /i "established" /c
View Code

# 統計TIME_WAIT狀態下的連接一共有多少個,通常用於判斷是否有CC攻擊等...

技術分享圖片
netstat -ano|find /i "time_wait" /c
View Code

# 刷新DNS緩存

技術分享圖片
ipconfig /flushdns
View Code

# 導出ip到C盤ip.txt

技術分享圖片
netsh -c interface ip dump > c:\ip.txt
View Code

# 對192.168.0.1做路由跟蹤

技術分享圖片
tracert 192.168.0.1
View Code

# 查看本機ipv4路由表

技術分享圖片
route print -4
View Code

# 查看本機ipv6路由表

技術分享圖片
route print -6
View Code

# 查看本機接口列表

技術分享圖片
route print interface
route print no interface
View Code

# 添加路由

技術分享圖片
route ADD 10.35.10.0 MASK 255.255.255.0 10.35.10.104 [METRIC metric] [IF interface]
View Code

# 修改路由, CHANGE只能用於修改網關和躍點數

技術分享圖片
route CHANGE 10.35.10.0 MASK 255.255.255.0 10.35.10.104 [METRIC metric] [IF interface]
View Code

# 刪除路由

技術分享圖片
route DELETE 10.35.10.0
View Code

# route命令格式詳解

技術分享圖片
ROUTE [-f] [-4|-6] command [destination] [MASK netmask] [gateway] [METRIC metric] [IF interface]
-f : 清除所有網關的路由表。如果與某個命令結合使用,在運行該命令前,應清除路由表

-4 : 強制使用ipv4 -6 : 強制使用ipv6 command PRINT : 打印路由 ADD : 添加路由 DELETE : 刪除路由 CHANGE : 修改現有路由 destination : 目標主機 MASK : 指定下一個參數為網絡掩碼值 netmask : 指定掩碼值,如果未指定,默認為 255.255.255.255 gateway : 指定網關 interface : 指定路由的接口號碼 METRIC : 指定躍點數,例如目標的成本
View Code

Windows實用命令