Share via

Microsoft SQL Server 2022 - no TCP/IP connection in client protocols in SQLServer Configuration Manager

Lackner, Mario 0 Reputation points
2026-05-26T06:58:27.8+00:00

Hello,

since SQL Server 2022 Standard edition I miss in "SQL Server Configuration Manager" under "client protocols" all protocols e.g. "TCP/IP", to enable client connection to the Database.

Also I can not create manually a protocol in "client protocols".

No listening on port 1433.

thanks in advance for your help!

BR Mario

User's image

SQL Server Database Engine
0 comments No comments

3 answers

Sort by: Most helpful
  1. Senthil kumar 685 Reputation points
    2026-05-27T08:20:41.6133333+00:00

    Hi @Lackner, Mario

    as per the error message you have to add your link your client ip to server by command attached the page link for your reference.
    https://www.sqlshack.com/how-to-create-and-configure-a-linked-server-in-sql-server-management-studio/
    please follow the procedures.

    Thanks.

    Was this answer helpful?


  2. Erland Sommarskog 134.7K Reputation points MVP Volunteer Moderator
    2026-05-26T10:36:19.2666667+00:00

    As the AI says, this node relates to the old SQL Native Client drivers which are not shipped with SQL Server. Instead you use the ODBC and OLE DB drivers which you install separately.

    It was long ago I had any reason to work with this node in SSCM anyway. What exactly do you expect to use this node for?

    Was this answer helpful?


  3. AI answer

    2026-05-26T06:58:46.31+00:00

    In SQL Server 2022 and later, the traditional “SQL Server Native Client” (sqlncli) is deprecated and no longer installed as part of SQL Server. Because of this, the Client Protocols node for “SQL Native Client 11.0” in SQL Server Configuration Manager can appear empty and cannot be populated from there.

    Client connectivity now relies on newer client providers (for example, the Microsoft ODBC Driver for SQL Server or the Microsoft JDBC Driver), and the server‑side network stack is configured only under SQL Server Network Configuration → Protocols for <instance>. That is where TCP/IP, Named Pipes, and their ports (such as 1433) are enabled and configured.

    To ensure TCP/IP connectivity for clients in this setup:

    1. Open SQL Server Configuration Manager.
    2. Go to SQL Server Network Configuration → Protocols for <your SQL 2022 instance>.
    3. Enable TCP/IP and, if needed, Named Pipes.
    4. In TCP/IP → Properties → IPAll, set a static TCP Port (for example, 1433) if a fixed port is required.
    5. Restart the SQL Server service so the instance starts listening on the configured port.

    If a legacy client or tool still depends on the old Native Client “Client Protocols” view, use the SQL Server Client Network Utility (cliconfg.exe) to enable TCP/IP and Named Pipes for those clients, as described in the referenced Q&A. This utility replaces the missing client‑protocol entries for older Native Client–based applications.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.