Difference between revisions of "Zabbix Agent Windows Firewall"
Jump to navigation
Jump to search
(Created page with "# Windows Powershell allow 10050 Private network only ``` New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 100...") |
(No difference)
|
Latest revision as of 19:12, 4 January 2022
Windows Powershell allow 10050
Private network only
New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 10050 -Profile Private Get-NetFirewallRule -DisplayName "Allow inbound 10050"
All options
New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 10050 -Profile Domain New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 10050 -Profile Private New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 10050 -Profile Public New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 10050 -Profile Any Get-NetFirewallRule -DisplayName "Allow inbound 10050"
https://blog.masteringmdm.com/install-and-configure-zabbix-agent-windows/#3_Prepare_Windows_firewall