diff options
author | Elvin Efendi <elvin.efendiyev@gmail.com> | 2016-01-21 17:00:26 -0500 |
---|---|---|
committer | Elvin Efendi <elvin.efendiyev@gmail.com> | 2016-01-21 17:00:26 -0500 |
commit | b466a30f45c9571d8f1871c1c2f4ab9255eaf0b6 (patch) | |
tree | e2a2a70a346c5cb887d03f0760cb8fa5a9c9cb42 /lib/oxidized | |
parent | 93593578aabba6cbbc11b331ead3c4271b3569f6 (diff) | |
parent | ba05171450facc21824a24403221eeb9a856caad (diff) |
Merge pull request #18 from Shopify/ssh-proxy
SSH proxy command
Diffstat (limited to 'lib/oxidized')
-rw-r--r-- | lib/oxidized/input/ssh.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/oxidized/input/ssh.rb b/lib/oxidized/input/ssh.rb index 476a786..493f7bb 100644 --- a/lib/oxidized/input/ssh.rb +++ b/lib/oxidized/input/ssh.rb @@ -1,5 +1,6 @@ module Oxidized require 'net/ssh' + require 'net/ssh/proxy/command' require 'timeout' require 'oxidized/input/cli' class SSH < Input @@ -22,11 +23,15 @@ module Oxidized secure = Oxidized.config.input.ssh.secure @log = File.open(Oxidized::Config::Crash + "-#{@node.ip}-ssh", 'w') if Oxidized.config.input.debug? port = vars(:ssh_port) || 22 - @ssh = Net::SSH.start @node.ip, @node.auth[:username], :port => port.to_i, + if proxy_host = vars(:proxy) + proxy = Net::SSH::Proxy::Command.new("ssh #{proxy_host} nc %h %p") + end + @ssh = Net::SSH.start(@node.ip, @node.auth[:username], :port => port.to_i, :password => @node.auth[:password], :timeout => Oxidized.config.timeout, :paranoid => secure, :auth_methods => %w(none publickey password keyboard-interactive), - :number_of_password_prompts => 0 + :number_of_password_prompts => 0, + :proxy => proxy) unless @exec shell_open @ssh begin |