Skip to content

Commit 11ae71e

Browse files
Update Test-SCOMPorts.ps1
1 parent 3a20ebc commit 11ae71e

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

Powershell/Test-SCOMPorts.ps1

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -105,23 +105,27 @@ Starting SCOM Port Checker
105105
Write-Host " Running from: " -NoNewLine
106106
Write-Host $env:COMPUTERNAME -ForegroundColor Cyan -NoNewLine
107107
$ports = @{
108-
"Management Server / Agent Port" = 5723;
109-
"Console Port" = 5724;
110-
"Connector Framework Source Port" = 51905;
111-
"ACS Forwarder Port" = 51909;
112-
"AEM Port" = 51906;
113-
"SQL Server (Default) Port" = 1433;
114-
"SSH Port" = 22;
115-
"WS-MAN Port" = 1270;
116-
"Web Console (HTTP) Port" = 80;
117-
"Web Console (HTTPS) Port" = 443;
118-
"SNMP (Get) Port" = 161;
119-
"SNMP (Trap) Port" = 162
108+
"Management Server / Agent Port" = 5723;
109+
"Web Console / Console Port" = 5724;
110+
"Connector Framework Source Port" = 51905;
111+
"ACS Forwarder Port" = 51909;
112+
"AEM Port" = 51906;
113+
"SQL Server (Default) Port" = 1433;
114+
"SSH Port" = 22;
115+
"WS-MAN Port" = 1270;
116+
"Web Console (HTTP) Port" = 80;
117+
"Web Console (HTTPS) Port" = 443;
118+
"SNMP (Get) Port" = 161;
119+
"SNMP (Trap) Port" = 162
120120

121-
"Remote Procedure Call (RPC)" = 135;
121+
"Remote Procedure Call (DCOM/RPC)" = 135;
122122
#"NetBIOS (Name Services UDP)" = 137;
123123
#"NetBIOS (Datagram Services UDP)" = 138;
124-
"NetBIOS (Session Services)" = 139;
124+
"NetBIOS (Session Services)" = 139;
125+
"SMB Over IP (Direct TCP/IP)" = 445;
126+
#"Private/Dynamic Range (Beginning)" = 49152;
127+
#"Private/Dynamic Range (Middle)" = 57343;
128+
#"Private/Dynamic Range (End)" = 65535;
125129
}
126130
foreach ($server in $DestinationServer)
127131
{

0 commit comments

Comments
 (0)