User Tools

Site Tools


windows_firewall

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
windows_firewall [2024/07/09 13:20] – created jpwindows_firewall [2024/07/09 13:25] (current) jp
Line 1: Line 1:
 ===== Windows Firewall ===== ===== Windows Firewall =====
 +
 +=== Открыть порт WSUS ===
 +
 +Данный пример откроет порт WSUS для входящих подключений:
 +
 +   New-NetFirewallRule -DisplayName WSUS_HTTPS -Direction Inbound -Protocol TCP -LocalPort 8531 -Action allow
 +
 +----
 +=== Открыть входящие порты для MS SQL Server ===
 +
 +Подключения будут открыты для всех профилей сетей
 +
 +Основной порт:
 +
 +<WRAP prewrap>
 +<code>
 +New-NetFirewallRule -DisplayName "SQLServer default instance" -Direction Inbound -LocalPort 1433 -Protocol TCP -Action Allow
 +</code>
 +</WRAP>
 +
 +SQL Browser:
 +
 +<WRAP prewrap>
 +<code>
 +New-NetFirewallRule -DisplayName "SQLServer Browser service" -Direction Inbound -LocalPort 1434 -Protocol UDP -Action Allow
 +</code>
 +</WRAP>
 +
 +{{tag>Microsoft Windows Firewall Networking SQL MSSQL}}
windows_firewall.1720531200.txt.gz · Last modified: 2024/07/09 13:20 by jp