ChatGPT解决这个技术问题 Extra ChatGPT

Bash script to set up a temporary SSH tunnel

On Cygwin, I want a Bash script to:

Create an SSH tunnel to a remote server. Do some work locally that uses the tunnel. Then shut down the tunnel.

The shutdown part has me perplexed.

Currently, I have a lame solution. In one shell I run the following to create a tunnel:

# Create the tunnel - this works! It runs forever, until the shell is quit.
ssh -nNT -L 50000:localhost:3306 jm@sampledomain.com

Then, in another shell window, I do my work:

# Do some MySQL stuff over local port 50000 (which goes to remote port 3306)

Finally, when I am done, I close the first shell window to kill the tunnel.

I'd like to do this all in one script like:

# Create tunnel
# Do work
# Kill tunnel

How do I keep track of the tunnel process, so I know which one to kill?

I wrote a script that would help to do ssh tunneling, you can check it out at: github.com/gdbtek/ssh-tunneling.git

j
joelostblom

You can do this cleanly with an ssh 'control socket'. To talk to an already-running SSH process and get it's pid, kill it etc. Use the 'control socket' (-M for master and -S for socket) as follows:

$ ssh -M -S my-ctrl-socket -fNT -L 50000:localhost:3306 jm@sampledomain.com
$ ssh -S my-ctrl-socket -O check jm@sampledomain.com
Master running (pid=3517) 
$ ssh -S my-ctrl-socket -O exit jm@sampledomain.com
Exit request sent. 

Note that my-ctrl-socket will be an actual file that is created.

I got this info from a very RTFM reply on the OpenSSH mailing list.


This is the best answer I have seen on the topic so far. Thank you a lot, it should be the accepted one. I use this to connect to my Vagrant VM and run a FlywayDB update script.
Apparently control sockets do not work everywhere. For example, I get Operation not permitted on drone.io continuous integration environment: muxserver_listen: link mux listener ssh-ctrl-socket.wsASkszgSBlK7kqD => ssh-ctrl-socket: Operation not permitted
So what happens to the my-ctrl-socket file after this is run? When I do ls -la in the current folder I can't see the file anymore.
If you use it in a script you need to wait for the control socket for a few seconds to become available. My solution: while [ ! -e $ctrl_socket ]; do sleep 0.1; done
Brilliant stuff, way more elegant then everything else I found online. Thanks
v
vfclists

You can tell SSH to background itself with the -f option but you won't get the PID with $!. Also instead of having your script sleep an arbitrary amount of time before you use the tunnel, you can use -o ExitOnForwardFailure=yes with -f and SSH will wait for all remote port forwards to be successfully established before placing itself in the background. You can grep the output of ps to get the PID. For example you can use

...
ssh -Cfo ExitOnForwardFailure=yes -N -L 9999:localhost:5900 $REMOTE_HOST
PID=$(pgrep -f 'N -L 9999:')
[ "$PID" ] || exit 1
...

and be pretty sure you're getting the desired PID


You may not realise it, but this is sort of genius. I was searching for a way to track the SSH tunnel PIDs and almost ended up using the systemd service scripts. Not anymore: I can grep the SSH process I need using the tunnel name. This idea has somehow completely skipped me. Thanks a lot!
j
jm.

You can tell ssh to go into background with & and not create a shell on the other side (just open the tunnel) with a command line flag (I see you already did this with -N).

Save the PID with PID=$!

Do your stuff

kill $PID

EDIT: Fixed $? to $! and added the &


If my script dies somewhere before it gets to the KILL, I have to be careful to handle that.
@jm: trap 'kill $PID' 1 2 15 will cover many cases of script failure.
For this to work reliably, i had to "sleep" a little AFTER creating the tunnel, but before using it.
@NormanRamsey I think you mean trap "kill $PID", because bash will only interpolate variables inside double quoted strings
@JuanCaicedo The distinction would only be important if the PID variable were redefined later on. The variable is either expanded when the trap built-in is called (the OP's approach) or when a signal has been caught (your approach); both approaches produce the same result here.
t
too much php

I prefer to launch a new shell for separate tasks and I often use the following command combination:

  $ sudo bash; exit

or sometimes:

  $ : > sensitive-temporary-data.txt; bash; rm -f sensitive-temporary-data.txt; exit

These commands create a nested shell where I can do all my work; when I'm finished I hit CTRL-D and the parent shell cleans up and exits as well. You could easily throw bash; into your ssh tunnel script just before the kill part so that when you log out of the nested shell your tunnel will be closed:

#!/bin/bash
ssh -nNT ... &
PID=$!
bash
kill $PID

Very interesting. This may handle the "trap" problem better. Will have to try it.
V
Valentin Rocher

You could launch the ssh with a & a the end, to put it in the background and grab its id when doing. Then you just have to do a kill of that id when you're done.


Be aware if using the ampersand ("&"). It is an ugly approach since you will have to determine the actual connection established for yourself. It can cause to have further code being executed which is not waiting for the actual connection to be fully established. Furthermore the connection won't be killed automatically if the script breaks.
i
ijortengab

A simple bash script to solve your problem.

# Download then put in $PATH
wget https://raw.githubusercontent.com/ijortengab/bash/master/commands/command-keep-alive.sh
mv command-keep-alive.sh -t /usr/local/bin

# open tunnel, put script in background
command-keep-alive.sh "ssh -fN -o ServerAliveInterval=10 -o ServerAliveCountMax=2 -L 33306:localhost:3306 myserver" /tmp/my.pid &
# do something
mysql --port 33306
# close tunnel
kill $(cat /tmp/my.pid)

d
desertnaut

https://github.com/aronpc/remina-ssh-tunnel

#!/usr/bin/env sh

scriptname="$(basename $0)"
actionname="$1"
tunnelname=$(echo "$2" | iconv -t ascii//TRANSLIT | sed -E 's/[^a-zA-Z0-9-]+/-/g' | sed -E 's/^-+|-+$//g' | tr A-Z a-z)
remotedata="$3"
tunnelssh="$4"

if [ $# -lt 4 ] 
 then
    echo "Usage: $scriptname start | stop LOCAL_PORT:RDP_IP:RDP_PORT SSH_NODE_IP"
    exit
fi

case "$actionname" in

start)

  echo "Starting tunnel to $tunnelssh"
  ssh -M -S ~/.ssh/sockets/$tunnelname.control -fnNT -L $remotedata $tunnelssh
  ssh -S ~/.ssh/sockets/$tunnelname.control -O check $tunnelssh
  ;;

stop)
  echo "Stopping tunnel to $tunnelssh"
  ssh -S ~/.ssh/sockets/$tunnelname.control -O exit $tunnelssh 
 ;;

*)
  echo "Did not understand your argument, please use start|stop"
  ;;

esac

usage example

Edit or create new remmina server connection

schema

~/.ssh/rdp-tunnel.sh ACTION TUNNELNAME LOCAL_PORT:REMOTE_SERVER:REMOTE_PORT TUNNEL_PROXY

name description ACTION start|stop TUNNELNAME "string identify socket" slugify to create socket file into ~/.ssh/sockets/string-identify-socket.control LOCAL_PORT the door that will be exposed locally if we use the same port for two connections it will crash REMOTE_SERVER the ip of the server that you would access if you had it on the proxy server that will be used REMOTE_PORT the service port that runs on the server TUNNEL_PROXY the connection you are going to use as a proxy, it needs to be in your ~/.ssh/config preferably using the access keys

I use the combination (% g-% p) of the remmina group name and connection name to be my TUNNELNAME (this needs to be unique, it will see the socket name)

pre-command

~/.ssh/rdp-tunnel.sh start "%g-%p" 63394:192.168.8.176:3389 tunnel-name-1

post-command

~/.ssh/rdp-tunnel.sh stop "%g-%p" 63394:192.168.8.176:3389 tunnel-name-1

https://user-images.githubusercontent.com/181354/110811902-e5953200-8265-11eb-9a57-147490fa0135.png

you can and should use this script to access anything, I use it constantly to access systems and services that do not have a public ip going through 1,2,3,4,5 or more ssh proxies

see more into :

ssh config ssh mach ssh jump hosts sshuttle python ssh

Refs:

https://remmina.org/remmina-rdp-ssh-tunnel/ https://kgibran.wordpress.com/2019/03/13/remmina-rdp-ssh-tunnel-with-pre-and-post-scripts/ Bash script to set up a temporary SSH tunnel https://gist.github.com/oneohthree/f528c7ae1e701ad990e6


While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review
thanks, I managed to put readme.md, I didn't know I had