Sql-server – SQL Server Configuration manager doesn’t show the IP

sql server

Sorry for stupid question.
I'm trying to set up the remote connection to the SQL Server.
In all tutorials I watched people have their IPs shown in the TCP/IP properties window(under SQL Server Network Configuration–>Protocols for MSSQLSERVER). Please see the picture.
But I have only the port.
Where can I see the IP? What should I do to see it?

enter image description here

enter image description here

Best Answer

What the version of SQL Server are you using?

Please make sure you open the same version of SQL Server Configuration Manager if you have multiple different version SQL Server instances.

You can use the following query to view the raw data with your network protocols:

SELECT registry_key, value_name, value_data 
FROM sys.dm_server_registry
WHERE registry_key LIKE '%SuperSocketNetLib%'

See this for more details.

Regards,

Amelia