SV-271303r1109116_rule
V-271303
SRG-APP-000142-DB-000094
SQLI-22-007700
CAT II
10
Use SQL Server Configuration to change the ports used by SQL Server to comply with PPSM guidance, or document the need for other ports, and obtain written approval. Close ports no longer needed.
Review SQL Server Configuration for the ports used by SQL Server.
To determine whether SQL Server is configured to use a fixed port or dynamic ports, in the right-side pane, double-click on the TCP/IP entry to open the Properties dialog. (The default fixed port is 1433.)
Alternatively, run the following SQL query to determine the port used by SQL Server:
SELECT ISNULL(CONVERT(VARCHAR(25),local_tcp_port),'Dynamic Ports are Enabled')
FROM sys.dm_exec_connections
WHERE session_id = @@SPID
If any ports in use are in conflict with PPSM guidance and not explained and approved in the system documentation, this is a finding.
V-271303
False
SQLI-22-007700
Review SQL Server Configuration for the ports used by SQL Server.
To determine whether SQL Server is configured to use a fixed port or dynamic ports, in the right-side pane, double-click on the TCP/IP entry to open the Properties dialog. (The default fixed port is 1433.)
Alternatively, run the following SQL query to determine the port used by SQL Server:
SELECT ISNULL(CONVERT(VARCHAR(25),local_tcp_port),'Dynamic Ports are Enabled')
FROM sys.dm_exec_connections
WHERE session_id = @@SPID
If any ports in use are in conflict with PPSM guidance and not explained and approved in the system documentation, this is a finding.
M
5677