Which ports to open for Microsoft SQL Server?

13

0

Having searched the internet a few times on the best way to open up SQL Server connectivity through windows firewall i've yet to find a best way of doing it. Does anyone have a guaranteed way of finding which ports SQL is running on so you can open them in windows firewall?

dnolan

Posted 2009-08-29T21:19:15.503

Reputation: 243

Answers

14

If you only have one instance of SQL Server running, and it has the TCP/IP transport enabled for non-local connections, then chances are it will be listening on the default TCP port: 1433.

If you have multiple instances, or any other complications above "a single, default, instance", then things may be more complicated. You will need to set the ports for each instance (by default they are semi-random which is not generally helpful for firewall configuration) and will need to open the SQL Browser Service too (which usually listens on UDP port 1434, though this too can be reconfigured).

There is a fairly detailed set of notes on SQL Server and firewalls at http://msdn.microsoft.com/en-us/library/cc646023.aspx

David Spillett

Posted 2009-08-29T21:19:15.503

Reputation: 22 424

4

You will need to start browser service to resolve non-default instances. Additionally, opening UDP 1434 will allow resolution of the named instances by name instead of port, so you will not need to use the ports. If you are uncomfortable opening UDP 1434 long-term, or you have a DBA who is on-site and can connect locally, you may ask them to connect via SQL Server Mgmt Studio OR SQLCMD and specifiy the server connection as follows:

tcp:servername\instancename

prefixing with tcp will force a tcp connection. Once this is done, you may connect to your named instance and query sys.dm_exec_connections to find the port the non-default instance is running on like so:

SELECT local_tcp_port FROM sys.dm_exec_connections WHERE session_id = @@SPID

Robert Gannon

Posted 2009-08-29T21:19:15.503

Reputation: 153

0

The Default port for SQL Server is 1433

Brad

Posted 2009-08-29T21:19:15.503

Reputation: 362

If you're on a named instance, this is not always the case though – Mark Henderson – 2009-08-29T23:08:23.927

For a named instance the port number is dynamic by default. – mrdenny – 2009-08-30T02:00:08.753

0

Arshia

Posted 2009-08-29T21:19:15.503

Reputation: 1

2

Can you add in the relevant parts of the link into your answer? We ask this to help the OP out, so they will not have to search through information that may not pertain to them. This is also to preserve the relevant information in case the hosting site goes down. For more information, see this meta post.

– Cfinley – 2015-04-30T19:02:54.447