summaryrefslogtreecommitdiff
path: root/ssh_config.5
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-05-07 10:06:42 +0100
committerColin Watson <cjwatson@debian.org>2013-05-07 10:06:42 +0100
commitecebda56da46a03dafff923d91c382f31faa9eec (patch)
tree449614b6c06a2622c74a609b31fcc46c60037c56 /ssh_config.5
parentc6a2c0334e45419875687d250aed9bea78480f2e (diff)
parentffc06452028ba78cd693d4ed43df8b60a10d6163 (diff)
merge 6.2p1; reorder additions to monitor.h for easier merging in future
Diffstat (limited to 'ssh_config.5')
-rw-r--r--ssh_config.520
1 files changed, 17 insertions, 3 deletions
diff --git a/ssh_config.5 b/ssh_config.5
index 1c118eefc..bd3a7127a 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: ssh_config.5,v 1.157 2012/06/29 13:57:25 naddy Exp $ 36.\" $OpenBSD: ssh_config.5,v 1.161 2013/01/08 18:49:04 markus Exp $
37.Dd $Mdocdate: June 29 2012 $ 37.Dd $Mdocdate: January 8 2013 $
38.Dt SSH_CONFIG 5 38.Dt SSH_CONFIG 5
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -204,6 +204,8 @@ The supported ciphers are
204.Dq aes128-ctr , 204.Dq aes128-ctr ,
205.Dq aes192-ctr , 205.Dq aes192-ctr ,
206.Dq aes256-ctr , 206.Dq aes256-ctr ,
207.Dq aes128-gcm@openssh.com ,
208.Dq aes256-gcm@openssh.com ,
207.Dq arcfour128 , 209.Dq arcfour128 ,
208.Dq arcfour256 , 210.Dq arcfour256 ,
209.Dq arcfour , 211.Dq arcfour ,
@@ -213,6 +215,7 @@ and
213The default is: 215The default is:
214.Bd -literal -offset 3n 216.Bd -literal -offset 3n
215aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128, 217aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
218aes128-gcm@openssh.com,aes256-gcm@openssh.com,
216aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc, 219aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
217aes256-cbc,arcfour 220aes256-cbc,arcfour
218.Ed 221.Ed
@@ -634,6 +637,8 @@ should only use the authentication identity files configured in the
634files, 637files,
635even if 638even if
636.Xr ssh-agent 1 639.Xr ssh-agent 1
640or a
641.Cm PKCS11Provider
637offers more identities. 642offers more identities.
638The argument to this keyword must be 643The argument to this keyword must be
639.Dq yes 644.Dq yes
@@ -822,9 +827,18 @@ in order of preference.
822The MAC algorithm is used in protocol version 2 827The MAC algorithm is used in protocol version 2
823for data integrity protection. 828for data integrity protection.
824Multiple algorithms must be comma-separated. 829Multiple algorithms must be comma-separated.
830The algorithms that contain
831.Dq -etm
832calculate the MAC after encryption (encrypt-then-mac).
833These are considered safer and their use recommended.
825The default is: 834The default is:
826.Bd -literal -offset indent 835.Bd -literal -offset indent
827hmac-md5,hmac-sha1,umac-64@openssh.com, 836hmac-md5-etm@openssh.com,hmac-sha1-etm@openssh.com,
837umac-64-etm@openssh.com,umac-128-etm@openssh.com,
838hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,
839hmac-ripemd160-etm@openssh.com,hmac-sha1-96-etm@openssh.com,
840hmac-md5-96-etm@openssh.com,
841hmac-md5,hmac-sha1,umac-64@openssh.com,umac-128@openssh.com,
828hmac-sha2-256,hmac-sha2-512,hmac-ripemd160, 842hmac-sha2-256,hmac-sha2-512,hmac-ripemd160,
829hmac-sha1-96,hmac-md5-96 843hmac-sha1-96,hmac-md5-96
830.Ed 844.Ed