public
Description: Pure Ruby implementation of an SSH (protocol 2) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh.git
Search Repo:
commit  98dc1991febeac13d5e0cb7c71d0ca2d885cb23e
tree    6a677d93c491634184891572a2912ca105668f50
parent  675887c6bd90ba8acc58d929ffdb1f8ce63fb12e
name age message
folder History.txt Sun Mar 16 20:48:15 -0700 2008 update history file to note ssh_config support [jamis]
folder Manifest.txt Sun Mar 16 06:56:49 -0700 2008 use Hoe to centralized rakefile logic [jamis]
folder README.txt Fri Mar 21 07:17:59 -0700 2008 get rid of readers/writers and consolidate that... [jamis]
folder Rakefile Sun Mar 16 06:56:49 -0700 2008 use Hoe to centralized rakefile logic [jamis]
folder TODO Sat Mar 22 16:06:23 -0700 2008 add support for 'env' channel requests [jamis]
folder Thanks.txt Sun Mar 16 20:46:23 -0700 2008 (partial) ssh_config support [jamis]
folder lib/ Sat Mar 22 16:06:23 -0700 2008 add support for 'env' channel requests [jamis]
folder setup.rb Mon Aug 20 20:34:55 -0700 2007 add a setup.rb script for non-gem installation [jamis]
folder test/ Sat Mar 22 13:48:08 -0700 2008 add support for :user_known_hosts_file and :glo... [jamis]
README.txt
= Net::SSH

* http://net-ssh.rubyforge.org/ssh

== DESCRIPTION:

Net::SSH is a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and 
interact with processes on remote servers, via SSH2.

== FEATURES/PROBLEMS:

* Execute processes on remote servers and capture their output
* Run multiple processes in parallel over a single SSH connection
* Support for SSH subsystems
* Forward local and remote ports via an SSH connection

== SYNOPSIS:

In a nutshell:

  require 'net/ssh'

  Net::SSH.start('host', 'user', :password => "password") do |ssh|
    # capture all stderr and stdout output from a remote process
    output = ssh.exec!("hostname")

    # capture only stdout matching a particular pattern
    stdout = ""
    ssh.exec!("ls -l /home/jamis") do |channel, stream, data|
      stdout << data if stream == :stdout
    end
    puts stdout

    # run multiple processes in parallel to completion
    ssh.exec "sed ..."
    ssh.exec "awk ..."
    ssh.exec "rm -rf ..."
    ssh.loop

    # open a new channel and configure a minimal set of callbacks, then run
    # the event loop until the channel finishes (closes)
    channel = ssh.open_channel do |ch|
      ch.exec "/usr/local/bin/ruby /path/to/file.rb" do |ch, success|
        raise "could not execute command" unless success

        # "on_data" is called when the process writes something to stdout
        ch.on_data do |c, data|
          $STDOUT.print data
        end

        # "on_extended_data" is called when the process writes something to stderr
        ch.on_extended_data do |c, type, data|
          $STDERR.print data
        end

        ch.on_close { puts "done!" }
      end
    end

    channel.wait

    # forward connections on local port 1234 to port 80 of www.capify.org
    ssh.forward.local(1234, "www.capify.org", 80)
    ssh.loop { true }
  end

See Net::SSH for more documentation, and links to further information.

== REQUIREMENTS:

The only requirement you might be missing is the OpenSSL bindings for Ruby. These are built by default on most 
platforms, but you can verify that they're built and installed on your system by running the following command line:

  ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION'

If that spits out something like "OpenSSL 0.9.8g 19 Oct 2007", then you're set. If you get an error, then you'll need to 
see about rebuilding ruby with OpenSSL support, or (if your platform supports it) installing the OpenSSL bindings 
separately.

Additionally: if you are going to be having Net::SSH prompt you for things like passwords or certificate passphrases, 
you'll want to have either the Highline (recommended) or Termios (unix systems only) gem installed, so that the 
passwords don't echo in clear text.

== INSTALL:

* gem install net-ssh (might need sudo privileges)

== LICENSE:

(The MIT License)

Copyright (c) 2008 Jamis Buck <jamis@37signals.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.