13

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?

4 Answers 4

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

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

0

The Default port for SQL Server is 1433

2
  • If you're on a named instance, this is not always the case though Aug 29, 2009 at 23:08
  • For a named instance the port number is dynamic by default.
    – mrdenny
    Aug 30, 2009 at 2:00
0

Maybe it is useful to change the default port of your instance Have you seen http://blogs.msdn.com/b/dataaccesstechnologies/archive/2010/03/03/running-sql-server-default-instance-on-a-non-default-or-non-standard-tcp-port-tips-for-making-application-connectivity-work.aspx?

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
    Apr 30, 2015 at 19:02

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .