How to find SQL Server running port?

后端 未结 13 729
再見小時候
再見小時候 2020-11-28 20:10

Yes I read this How to find the port for MS SQL Server 2008?

no luck.

telnet 1433

returns connection failed, so I must s

13条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-28 20:29

    In our enterprise I don't have access to MSSQL Server, so I can'r access the system tables.

    What works for me is:

    1. capture the network traffic Wireshark (run as Administrator, select Network Interface),while opening connection to server.
    2. Find the ip address with ping
    3. filter with ip.dst == x.x.x.x

    The port is shown in the column info in the format src.port -> dst.port

提交回复
热议问题