Zabbix Agent Windows Firewall

From UVOO Tech Wiki
Revision as of 19:12, 4 January 2022 by Busk (talk | contribs) (Created page with "# Windows Powershell allow 10050 Private network only ``` New-NetFirewallRule -DisplayName "Allow inbound 10050" -Direction Inbound -Protocol TCP -Action Allow -LocalPort 100...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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