MS SQL Server Dynamic Port Range

It's not a range as such. It uses 1433 by default.

If you're referring to the dynamic port range for TCP/UDP, it is 49152–65535. Refer to wikipedia's list of TCP/UDP ports for more info. I don't know if this is of any relevance to your question though.

Also this is the default range.

To know the exact range you can use the following command on the server

NetSh INT IPV4 SHOW DynamicPort TCP.

This range can be changed to default using the following command

NetSh INT IPV4 SET DynamicPort TCP Start=49152 num=16384.

Reference : Default dynamic port range for TCP/IP has changed