命令列下配置Windows 2003防火牆

2022-06-08 05:15:11 字數 1862 閱讀 2022

命令:netsh firewall

引數

? // 顯示命令列表

add // 新增防火牆配置

delete // 刪除防火牆配置

dump // 顯示乙個配置指令碼

help // 顯示命令列表

reset // 將防火牆配置重置為預設值。

set // 設定防火牆配置

show // 顯示防火牆配置

add allowedprogram // 新增防火牆允許的程式配置。

add portopening // 新增防火牆埠配置

delete allowedprogram // 刪除防火牆允許的程式配置

delete portopening // 刪除防火牆埠配置

set allowedprogram // 設定防火牆允許的程式配置

set icmpsetting // 設定防火牆 icmp 配置

set logging // 設定防火牆記錄配置

set multicastbroadcastresponse // 設定防火牆多播/廣播響應配置

set notifications // 設定防火牆通知配置

set opmode // 設定防火牆操作配置

set portopening // 設定防火牆埠配置

set service // 設定防火牆服務配置

show allowedprogram // 顯示防火牆允許的程式配置

show config // 顯示防火牆配置。

show currentprofile // 顯示當前防火牆配置檔案

show icmpsetting // 顯示防火牆 icmp 配置

show logging // 顯示防火牆記錄配置

show multicastbroadcastresponse // 顯示防火牆多播/廣播響應配置

show notifications // 顯示防火牆操作配置

show opmode // 顯示防火牆埠配置

show portopening // 顯示防火牆埠配置

show service // 顯示防火牆服務配置

show state // 顯示當前防火牆狀態  

例如

命令:netsh firewall show allowedprogram //檢視防火牆放行的程式

netsh firewall set portopening tcp 445 enable //開啟445埠

netsh firewall set portopening tcp 3389 enable //不用說了,放行終端啦。。

netsh firewall delete allowedprogram c:\a.exe //刪除放行程式a.exe

netsh firewall set allowedprogram c:\a.exe a enable //新增程式c盤下的a.exe並放行

netsh firewall add allowedprogram c:\a.exe a enable //新增程式c盤下的a.exe並放行 

set allowedprogram和add allowedprogram效果一樣都可以新增放行程式,c:\a.exe是程式路徑a是在防火牆裡顯示的程式名字,這個名字可以 隨便寫,別有用心的傢伙可以用個迷惑性的名字。。呵呵。。其他命令自己試試吧。。

要是終端登陸做了ip限制的可以用netsh firewall set portopening tcp 3389 遠端桌面 enable custom 1.1.1.1<---你的ip,這個命令(中文版xp2)。

Windows命令列下配置IP位址

最近把公司的筆記本帶回住處,晚上無線上會兒網,第二天到公司發現原來設定的有線網絡卡的ip位址沒有了,每天需要手工設定一次,實在不爽,今天研究了一下用批處理解決這個問題,如下 第一步,先用ipconfig all找出想要設定ip位址的網絡卡名稱 上圖中的 本地連線 是我的有線的網絡卡 第二步,開啟記事...

怎樣通過cmd命令管理Windows2008防火牆

1 啟用桌面防火牆 netsh advfirewall set allprofiles state on 2 設定預設輸入和輸出策略 netsh advfirewall set allprofiles firewallpolicy allowinbound,allowoutbound 以上是設定為允...

命令列編譯C (Linux下 Windows下)

一般而言,對於 c 程式編譯有以下4個階段 參考 an introduction to gcc gcc 最開始的時候是 gnu c compiler,就是乙個 c 編譯器。但是後來因為這個專案裡邊整合了更多其他不同語言的編譯器,gcc 就代表 the gnu compiler collection,...