summaryrefslogtreecommitdiff
path: root/lib/net/ssh
Commit message (Collapse)AuthorAgeFilesLines
* Make keepalive a classkeepalive-classMiklos Fazekas2014-12-232-22/+27
|
* Merge pull request #207 from lonre/patch-1Miklós Fazekas2014-12-231-1/+1
|\ | | | | Remove trailing space
| * Remove trailing spaceLonre Wang2014-12-221-1/+1
| |
* | Keepalive fixesJason DeTiberus2014-12-181-2/+7
|/ | | | | | | | | - Replaced put statement with debug - Added include for Loggable - Reset @unresponded_keepalive_count before raising Net::SSH::Timeout - When passing Net::SSH.start a block, the ensure statement calls connection.close, if the connection is restored at this point, the close call will still fail since the unresponded_keepalive_count > 0
* keepalive_maxcountMiklos Fazkeas2014-12-021-1/+1
| | | | We should be saving keepalive last sent time before checking answer.
* timeout_maxcount: Since we've just sent out a message do not count that as ↵Miklos Fazkeas2014-12-021-1/+2
| | | | missed
* Merge pull request #201 from mfazekas/292-beta-vbuildDelano Mandelbaum2014-12-021-7/+11
|\ | | | | prepare 2.9.2 beta build
| * prepare 2.9.2 beta buildMiklos Fazkeas2014-12-021-7/+11
| |
* | refactor keepalive to a modulekeepalive-maxcountMiklos Fazkeas2014-12-022-37/+51
| |
* | Implemented keepalive_maxcountMiklos Fazkeas2014-12-022-3/+19
|/
* Revert aes-gcm @ opensslrevert_aes_gcmMiklos Fazkeas2014-11-112-4/+0
|
* Revert "Update chipers for known_hosts"Miklos Fazkeas2014-10-251-10/+2
| | | | This reverts commit cba8e6cfd0c2c9f849613737d2b40704372b8a2e.
* removed unimplemented hmac, host_key and we now warn instead of fail for ↵Miklos Fazkeas2014-10-031-8/+10
| | | | unimplemented algs
* Merge pull request #187 from mfazekas/password_auth_askDelano Mandelbaum2014-09-302-10/+38
|\ | | | | Password auth will ask for password up to number_of_password_prompts tim...
| * Password auth will ask for password up to number_of_password_prompts timesMiklos Fazkeas2014-09-262-10/+38
| |
* | Merge pull request #186 from mfazekas/ignore_unknown_pubkeyDelano Mandelbaum2014-09-301-4/+10
|\ \ | | | | | | Ignore unkown identities instead of failing on it
| * | Ignore unkown key instead of failing on itMiklos Fazkeas2014-09-261-4/+10
| |/
* | Revert "Add support for ssh-ed25519 to lib/net/ssh/buffer.rb"Miklos Fazkeas2014-09-261-1/+1
|/ | | | This reverts commit 16398e414cdcf59939c31357c136a188fd10ecab.
* warning: assigned but unused variable - multi_hostAkira Matsuda2014-09-021-1/+0
|
* warning: assigned but unused variable - hashAkira Matsuda2014-09-021-1/+1
|
* Fix duplicating entries in known_hosts when using proxy commandMichal Cichra2014-07-312-3/+10
| | | | | | | | | | | | Fixes #107 OpenSSH does not store ip address when using proxy command like: server.example.com ssh-rsa AAAAA....... net-ssh was storing it like: server.example.com,<no hostip for proxy command> ssh-rsa AAAA.....
* Add callback to directly find out remote forwarding responseJohn Keiser2014-07-171-12/+52
|
* Version bump (2.9.1)v2.9.1latestdelano2014-05-131-1/+1
|
* Merge branch 'master' of github.com:net-ssh/net-sshdelano2014-05-121-68/+197
|\
| * Clearer C string handling.Christopher Hunt2014-05-111-8/+9
| |
| * Remove unnecessary unicode code, fix length determination and implement ↵Christopher Hunt2014-05-111-14/+10
| | | | | | | | KeeAgent support.
| * Consolidate send_query methods and add unicode checking.Christopher Hunt2014-05-111-62/+39
| |
| * Cleaner compatibility. Fixes #92.Christopher Hunt2014-05-101-135/+77
| |
| * Clean up. Partial fix for #92. Does not work with KeeAgent.Christopher Hunt2014-05-101-56/+62
| |
| * Add 1.8.7 implementation.Christopher Hunt2014-05-101-2/+86
| |
| * Working with elevated console and elevated or limited Pageant.Christopher Hunt2014-05-101-31/+33
| |
| * Progress on 1.9.3 implementation.Christopher Hunt2014-05-061-4/+105
| |
| * Add external methods for security attribute acquiration.Christopher Hunt2014-05-041-1/+21
| |
* | Merge branch 'master' of github.com:net-ssh/net-sshdelano2014-05-121-2/+12
|\ \ | |/
| * Support negative patterns in host lookup from the SSH config file.Kevin Menard2014-05-011-2/+12
| | | | | | | | Fixes #150: ssh_config parsing doesn't support negated host patterns
* | Add aes-gcm ssh->ossl conversionChris Aumann2014-05-011-0/+3
| |
* | Add support for ssh-ed25519 to lib/net/ssh/buffer.rbChris Aumann2014-05-011-1/+1
|/
* Merge branch 'master' of github.com:net-ssh/net-sshv2.9.0delano2014-04-301-1/+1
|\
| * Merge pull request #149 from jefmathiot/masterDelano Mandelbaum2014-04-301-1/+1
| |\ | | | | | | Added an optional "options" argument to test socket open method, as the ...
| | * Added an optional "options" argument to test socket open method, as the ↵Jef Mathiot2014-02-211-1/+1
| | | | | | | | | | | | transport session use it with three arguments.
* | | Version bump (w/ new signing key)delano2014-04-301-2/+2
|/ /
* | Merge pull request #158 from mfazekas/281_ssh_config_bugfixDelano Mandelbaum2014-04-301-6/+22
|\ \ | | | | | | Fix to #145. We now have different 'keyboard-interactive' and 'challenge...
| * | Fix to #145. We now have different 'keyboard-interactive' and ↵Miklos Fazkeas2014-04-051-6/+22
| | | | | | | | | | | | 'challenge-response' auth types internally. And as with openssl 6.x you have to set both KbdInteractiveAuthentication and ChallengeResponseAuthentication to 'no' to disable keyboard-interactive auth.
* | | Merge pull request #161 from simonswine/feature_jenkins_ssh_agentDelano Mandelbaum2014-04-301-0/+2
|\ \ \ | | | | | | | | Ignore errors during ssh agent negotiation
| * | | Ignore errors during ssh agent negotiationChristian Simon2014-04-211-0/+2
| | | | | | | | | | | | | | | | | | | | * Support Apache's SSHD implementation of a SSH Agent * Discovered while trying to use Jenkins' SSH Agent Plugin
* | | | Update chipers for known_hostsChris Aumann2014-04-171-2/+10
| | | | | | | | | | | | | | | | Add ciphers recently added to openssh (since openssh-6.4)
* | | | Update HostKey, HMAC and Kex ciphersChris Aumann2014-04-161-4/+13
| | | | | | | | | | | | | | | | Add ciphers recently added to openssh (since openssh-6.4)
* | | | Add Ed25519 to private key listChris Aumann2014-04-161-2/+2
| | | |
* | | | Change private key order to prefer RSA oder DSAChris Aumann2014-04-161-2/+2
|/ / / | | | | | | | | | | | | RSA is more secure, due to longer cipher lengths. 1024bit (DSA default) should not be used anymore.
* | | IdentiesOnly will not disable ssh_agent as it's not supposed to, a new ↵Miklos Fazkeas2014-04-051-5/+6
|/ / | | | | | | option :use_agent provided for disabling agent. Fix #148 with another fix for #137.