Reputation: 3958
How do I 'lock down' my SQL Server 2005 installation to not listen on remote ports?
My SQL Server 2005 database instances are only used locally on the machine, so I want to prevent it listening on remote ports for security purposes, but do not want to do it via a firewall.
Any ideas?
Upvotes: 0
Views: 1291
Reputation: 21998
You can also turn off remote connections in SQL Server Management Studio
Upvotes: 2
Reputation: 41549
In SQL Client Configuration manager, see the section on SQL Native Client Configuration.
In the Client Protocols, disable all but "Shared Memory".
You may also have firewall ports open for port 1433 (if you had the TCP/IP client protocol). These could be disabled too.
Upvotes: 2