I'm trying to write a shell script that automates certain startup tasks based on my location (home/campusA/campusB). I go to University and take classes in two different campuses (hence campusA/campusB). My location is determined by which wireless network I'm connected to. For the purposes of this script, we can assume that I will be connected to one of these networks when the script is called and my script knows which one I'm connected to based on a call to iwconfig
.
This is what I want it to do:
cat file1 > file2 # always do this, regardless of where I am
if Im at home:
start tweetdeck, thunderbird, skype
else if Im at campusA:
activate the login script # I need to login on a webform before I get internet access.
# I have written a script to automate this.
# Wait for this script to finish before doing anything else
myProg2 & # I want myProg2 running in the background until I shutdown my computer.
else if Im at campusB:
ssh username@domain # this is the problematic line
myProg2 & # I want myProg2 running in the background until I shutdown my computer.
start tweetdeck, thunderbird
close the terminal with the "exit" command
The problem is that campusB's wireless network is behind a firewall, which grants me internet access ONLY after I successfully ssh by username@domain
. After a successful ssh, I need to keep the terminal window active in order to hold keep the internet access. If I close the terminal window, I lose internet access (this is bad).
When I try doing just ssh username@domain
, the script stops because I don't exit the ssh
command. I can't ^C
out of it, which means that the rest of the script is never executed. I also have the same problem if I just close the terminal window in an attempt to kill the ssh
session.
Some googling brought me to subshell
, which I'm either using wrong or can't use to solve my problem. So how should I go about solving this problem? I'd appreciate any help - I've been at this for a while now and am unable to find anything helpful. If it makes a difference, I'd rather not store my ssh
password in the script
Further, ampersanding the ssh
call (ssh username@domain &
) doesn't seem to do any good (can anyone explain why?)
Thank you in advance
EDIT
I must clarify, that the ssh connection has to be active in order for me to have internet access. Thus, when I close the terminal window, I need the ssh connection to still be active.
Here's a few thoughts that might help.
Sub-shells
Sub-shells fork new processes, but don't return control to the calling shell. If you want to fork a sub-shell to do the work for you, then you'll need to append a
&
to the line.(ssh username@domain) &
But this doesn't look like a compelling reason to use a sub-shell. If you had a number commands you wanted to execute in order from each other, yet in parallel from the calling shell, then maybe it would be worth it. For example...
(dothis.sh; thenthis.sh; andthislastthingtoo.sh) &
Forking
I'm not sure why
&
isn't working for you, but it may be worth looking intonohup
as well. This makes the command "immune" to hang up signals.nohup ssh username@domain
(try with and without the&
at the end)Passwords
Not storing passwords in the script is essential for any ssh automation. You can accomplish that using public key cryptography which is an inherent feature of ssh. I wont go into the details here because there are a number of great resources all across the interwebs on setting this up. I strongly suggest investigating this further.
If you do go this route, I also suggest running ssh in "batch mode" which will disable password querying and will automatically disconnect from the server if it becomes unresponsive after 5 minutes.
ssh -o 'BatchMode=yes' username@domain
Persistence
Then if you want to persist the connection, run some silly loop in bash! :)
ssh -o 'BatchMode=yes' username@domain "while (( 1 == 1 )); do sleep 60; done"
Maybe screen + ssh would fit the bill as well?
Something like:
Having a ssh with pseudy tty on background shell
In addition to @shellter's answer, I would like make some precision:
where @shelter said:
On my system (Debian 7 GNU/Linux), if I hit:
I could read:
Yes: Multiple -t options force tty allocation, even if ssh has no local tty.
This mean: If you remotely run a tool that require access to
pseudo terminal
(pty
like/dev/pts/0
), you could run them by using-t
switch.But this would work only if
ssh
is run from a shell console (aka having his own pty). If you plan to run them is shell session without console, like background scripts, you may use Multiple -t to enforce pseudo tty allocation fromssh
.Multiple ssh shell on one ssh connection
In addition to answers from @tommy and @geekosaur, I would make some precision:
@tommy point to a very intersting feature of
ssh
. Not sure this have a lot to do with answer, but speaking around long time connection, this feature has to be clearly understood.Once a connection is established,
ssh
could (and know how to) use them to drive a lot of thing in this one connection:-L
let you drive remote TCP connections to local machines/network. (full syntax is:-L
localip:localport:distip:distport
) where localip could be specified to permit other hosts from same local domain to access same tcp bind, and distip could by any host from distant network ( not only localhost ) sample:-L192.168.1.31:8443:google.com:443
permit any host from local domain to reach google through your host:http://192.168.1.31:8443
-R
Same remarks in reverse way!-M
Tell ssh to open a local unix socket for bindind next ssh consoles. Simply open two terminal window. First in both window, hit:ssh somewhere
than hitnetstat -tan | grep :22
ornetstat -tan | grep 192.168.1.31:22
(assuming192.168.1.31
is your onw host's ip)Than compare close all your ssh session and in first terminal, hit:
ssh -M somewhere
and in second, simplyssh somewhere
. you may see in second terminal:If now you hit
netstat -tan | grep 192.168.1.31:22
(on any of two oppened ssh session;) you must see that there is only one tcp connection.This kind of features could be used in combination with
-L
and maybe somesleep 86399
...To work around a tcp killer router that close every inactive TCP connection from more than 120 seconds, I run:
This ensure connection stay up even if I dont hit a key for more than two minutes.
The problem with
&
is that ssh loses access to its standard input (the terminal), so when it goes to read something to send to the other side it either gets an error and exits, or iskill
ed by the system withSIGTTIN
which will implicitly suspend it. The-n
and-f
options are used to deal with this:-n
tells it not to use standard input,-f
tells it to set up any necessary tunnels etc., then close the terminal stream.So the best way to do this is probably to do
and then manually kill the
ssh
before logout. Alternately,(The redirection is to make sure the
SIGTTIN
doesn't happen anyway.)While you're at it, you may want to save the process ID and shut it down from your
.logout
/.bash_logout
:and in
.bash_logout
:The extra code there attempts to avoid someone sabotaging your
~/.ssh_pid
, because I'm a professional paranoid.(Code untested and may have typoes)
I had a script that looped on 6 servers, calling via ssh in the background. In 1 part of the script, there was a mis-behaving vendor application; the application didn't 'let go' of the connection properly. (other parts of the script using ssh in background worked fine).
I found that using ssh -t -t cured the problem. Maybe this can help you too. (a teammate found this on the web, and we had spent so much time, I never went back to read the article that suggested this. The man page on our system gave no hint that such a thing was possible)
Hope this helps.
You may want to try to double background myProg2 to detach it from the tty:
Another option may be to use the daemon tool from the libslack package:
http://ingvar.blog.linpro.no/2009/05/18/todays-sysadmin-tip-using-libslack-daemon-to-daemonize-a-script/