《批處理新增防火牆過濾危險埠規則》
阿新 • • 發佈:2019-01-30
@echo off
color 0A
echo 開啟防火牆...
sc config sharedaccess start= auto > nul
net start sharedaccess > nul
echo 向防火牆新增禁用135,139,445埠tcp規則...
netsh advfirewall firewall add rule name="forbid_tcp_rules" dir=in protocol=tcp localport=135,445,139 action=block
echo 向防火牆新增禁用135,139,445埠udp規則...
netsh advfirewall firewall add rule name="forbid_udp_rules" dir=in protocol=udp localport=135,445,139 action=block
echo 完成
color 0A
echo 開啟防火牆...
sc config sharedaccess start= auto > nul
net start sharedaccess > nul
echo 向防火牆新增禁用135,139,445埠tcp規則...
netsh advfirewall firewall add rule name="forbid_tcp_rules" dir=in protocol=tcp localport=135,445,139 action=block
echo 向防火牆新增禁用135,139,445埠udp規則...
netsh advfirewall firewall add rule name="forbid_udp_rules" dir=in protocol=udp localport=135,445,139 action=block
echo 完成
pause
複製以上內容至文字,儲存為xx.bat。
字尾名為bat,若隱藏了字尾名,請先自行百度顯示隱藏字尾名再命名檔案。
用管理員許可權開啟即可。
實現開啟防火牆,新增過濾135,139,445埠的規則。
自行替換數字,自由新增禁用規則。