What are the exit statuses of ssh command?

by Vivek Gite on February 9, 2006 · 3 comments

SSH client is a program for logging into a remote machine and for executing commands on a remote machine. By default in Linux/UNIX if particular command/shell script is executed, it return two type of values which is used to see whether command or shell script executed is successful or not. This value is know as Exit Status of shell command or script.

The session terminates when the command or shell on the remote machine exits and all X11 and TCP/IP connections have been closed. The exit status of the remote program is returned as the exit status of ssh. You can use bash shell $? Variable to print exit status of shell. For example:

user@localhost: $ ssh user@somewhere.com

Password:

user@somewhere.com: $ exit
user@localhost: $ echo $?

In short,

  1. ssh exits with the exit status of the remote command which can be find with echo $? command.
  2. Or value 255 is return, if an error occurred while processing request via ssh session

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 3 comments… read them below or add one }

1 Rusty January 30, 2009

Very well, but what ARE the exit stati of the ssh command?
e.g, 0 if succesful? Or, 1?

Reply

2 wyrmmage July 16, 2009

Seeing as this is the top hit for googling “ssh return status”, I thought I’d go ahead and add that

The remote command may also terminate violently due to a signal.
Such a condition can be indicated by the following message. A zero
‘exit_status’ usually means that the command terminated successfully.
byte SSH_MSG_CHANNEL_REQUEST
uint32 recipient channel
string “exit-signal”
boolean FALSE
string signal name (without the “SIG” prefix)
boolean core dumped
string error message in ISO-10646 UTF-8 encoding
string language tag [RFC3066]

So you don’t *always* get the return status of your program.

Good post, though….it answered my question :)

Reply

3 Whatever September 16, 2011

My SSH version returns 0 for okay, and 255 if connection failed.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 2 + 15 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: