Pardon the huge edit, essentially replacing the original question. As I worked through the problem, things became more clear.
My goal is to work from a laptop, ssh-ing into various hosts, as various users, including multiple sessions to each user@host. (editing in vi, no X).
I have full root access to all hosts, but that shouldn't matter, at least not for how I've solved the problem thus far.
The laptop is assumed to have an unroutable and/or dynamically allocated IP address. The remote hosts have dedicated internet IPs.
The problem arises because I want the flexibility to work bi-directionally. After I ssh onto a remote host, I may find it useful to ssh, scp, etc. back to the laptop. I know, I could probably always work around this, but I'm trying to make all the connectivity transparent to me as a user.
I can't ssh directly to laptop from remote, in a new session, because of the unreachable IP. And even if I could, that would mean storing the private key on the remote server, and I'd prefer not to do that.
So, I set up a reverse tunnel when I first ssh into the remote host. Here's the laptop SSH config:
ForwardAgent yes
ServerAliveCountMax 3
ServerAliveInterval 60
ControlMaster auto
ControlPath ~/.ssh/%r_%p_%h
host remote1
hostname foo.remote_domain.com
RemoteForward 2222 localhost:22
host remote2
hostname bar.remote_domain.com
RemoteForward 2222 localhost:22
And the remote configuration:
ForwardAgent yes
ServerAliveCountMax 3
ServerAliveInterval 60
ControlMaster auto
ControlPath ~/.ssh/%r_%p_%h
host laptop
hostname localhost
user joe
port 2222
host remote1
hostname foo.remote_domain.com
host remote2
hostname remote2.remote_domain.com
Note: the remote config file references both remote hosts, just to make it easier to maintain a single file. I don't anticipate needing to ssh to myself!
When the first connection is made from laptop to either remote (for any user@remote), the tunnel is set up, causing the remote to LISTEN on port 2222. Of course, subsequent ssh's will succeed, but their attempt to build the tunnel will fail, as 2222 is already in use. This is not a problem. Doesn't matter which session built the tunnel, all can use it.
The problem arises when the initial session is closed, because the tunnel is torn down at that time. If later sessions are still open, they can no longer connect back to the laptop.
I thought I could perhaps use the ControlMaster configuration to solve this. With it set to 'auto', if no session exists, one is created (and the tunnel built). If a session exists, just use it. My hope was that closing the initial ssh that built the session (and tunnel) would not tear it all down. But no luck on that front. I left ControlMaster in, though, because it's a nice addition. Subsequent ssh connections are extremely fast. Lighter footprint, too.
The solution I've arrived at for now is to issue an initial no-op ssh that just builds the tunnel, and then goes into the background:
ssh -fN remote1
I'll issue this at the start of any working session (like when opening the lid of the laptop). Then I'll clean it up when all the sessions are closed by grepping for the pid, and killing.
Even after wrapping these two actions in a small shell script, it's just a bit messy. Not as transparent as I'd like. If I always wanted the tunnel open, and one end wasn't a off-and-on laptop, I could just run it from localhost login/logout. But that's not the case.
Ideally, the tunnel magically gets built on first invocation, and is destroyed only when the last user session completes.
I admit this problem isn't critical. But ssh is always surprising me with it's flexibility, and it would be nice to have a polished solution that 'just works', and then forget about it.