In my development shop, we deploy code on virtual servers that sit on a remote network.

We access the machines on that network by first opening an SSH connection to a gateway server, and then SSH-tunneling RDP over a local port.

I would very much like to be able to locally access SQL Server instances running on these servers in the same way.

I've set up a local port (3398) to redirect to the SQL Server port on the remote instance (L3398 -> remote.machine.com:1433).

I can then actually test the connection by telnetting to localhost 3393, and I get a connection: the screen clears and I can type characters to some listening process.

But when I try to connect SSMS to localhost:3393, it times out and then claims that there is no SQL Server listening on that port:

Cannot connect to localhost:3398

Additional information:
A network-related or instance-specific error occurred while establishing a connection 
to SQL Server. The server was not found or was not accessible. Verify that the
instance name is correct and that SQL Server is configured to allow remote
connections. (...)

I am sure that the server accepts remote connections, because I have connected to it remotely while logged in via RDP to a different machine within the remote network.

I have Googled around to know that this is possible; does anyone have some idea why this isn't working, or what I might do to diagnose and hopefully fix the problem?

Thanks!

link|improve this question

feedback

3 Answers

Instead of connecting to localhost:3398 Use 127.0.0.1,3398

link|improve this answer
localhost,3398 will also work. The important thing is that the port and host are separated by comma, not by colon. – Remus Rusanu Sep 6 '11 at 21:58
feedback

The issue is probably that SSMS is trying to access the SQL Server Browser Service, which is UDP port 1434. Take a look at http://technet.microsoft.com/en-us/library/cc646023.aspx for an overview of the additional ports you may need to forward to get this to work.

link|improve this answer
The SQL Server Browser service listens for incoming connections to a named instance and provides the client the TCP port number that corresponds to that named instance. Normally the SQL Server Browser service is started whenever named instances of the Database Engine are used. The SQL Server Browser service does not have to be started if the client is configured to connect to the specific port of the named instance. It sounds like this is a "lookup" service in case there are multiple instances running on multiple ports. I have only one instance running on the default port, 1433. – JimBurnell Aug 2 '11 at 17:12
Well, that's true, but did you configure SSMS to connect to the specific port of the named instance? By default SSMS will try and browse: I'm uncertain if there is a clean way to disable that behavior. – Femi Aug 2 '11 at 17:15
In the "Server name:" field, I am specifying "localhost:3398". Since my local port 3398 maps to port 1433 on the remote machine, that should be constitute specifying the port of the remote instance, right? In any case, I don't think the SQL Server Browser Service is running on the remote machine. – JimBurnell Aug 2 '11 at 17:19
To specify a port number, the format is "hostname,portnum". That is, separate them with a comma; you used a colon. – Ben Thul Aug 2 '11 at 21:52
That's very helpful to know (silly Microsoft!). Sadly, it didn't solve my problem, though. I'm pretty sure it's a network issue of some kind. – JimBurnell Aug 3 '11 at 17:53
show 3 more comments
feedback
up vote 0 down vote accepted

I'm pretty sure I figured out the answer to this, actually.

On the remote network (which we don't control), for security purposes, it appears that the database servers are set up to ignore database requests coming from the gateway machine. So I guess there's just no good solution short of convincing them to give us full VPN access. Thanks everyone for your help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.