How can I get list of open SSH tunnels?


I'm using Mac OS X client connected to FreeBSD server. I'm trying to query open tunnels on the client.

link|improve this question

70% accept rate
What OS would this be on? Is this your server? Do you have root access to it? Please edit your question and include more information. – ErikA Mar 11 '11 at 2:53
Check your other question, the answer I gave there will solve that too. – coredump Mar 11 '11 at 3:14
Are you looking at one session with multiple tunnels or multiple sessions? Pretty different topic :) – LordT Mar 11 '11 at 13:29
feedback

3 Answers

In Ubuntu, with iptables and iptstate installed and standard ssh port:

iptstate -D 22

each line will represent open tunnel.

link|improve this answer
great tip.I did not knew it existed. – Registered User Mar 11 '11 at 7:06
feedback

If you're trying to find out what's using the tunnel(s) in a single ssh session, type ~# at the beginning of a line.

link|improve this answer
feedback

You can use lsof:

$ lsof -i tcp | grep ^ssh
ssh       2211 lcipriani    3r  IPv4  20825      0t0  TCP lcipriani-laptop.local:49164->docsuite.cefla.com:22 (ESTABLISHED)
ssh       2223 lcipriani    3r  IPv4  21945      0t0  TCP lcipriani-laptop.local:34471->gd-b-21.vps.redomino.com:22 (ESTABLISHED)
ssh       2640 lcipriani    3r  IPv4  37488      0t0  TCP lcipriani-laptop.local:45693->makeda-xen1.redomino.com:22 (ESTABLISHED)
ssh       5279 lcipriani    3r  IPv4 212324      0t0  TCP lcipriani-laptop.local:56491->67.227.82.162:22 (ESTABLISHED)
ssh       5279 lcipriani    4u  IPv6 210281      0t0  TCP lcipriani-laptop:10000 (LISTEN)
ssh       5279 lcipriani    5u  IPv4 210282      0t0  TCP localhost.localdomain:10000 (LISTEN)

The last line represent a tunnel (look at the state LISTEN).

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.