Make comment more clear about SSH_COMPRESSION options
This commit is contained in:
parent
5870003c73
commit
f5403bd13a
|
@ -31,7 +31,7 @@
|
||||||
#### OFUNCTIONS MINI SUBSET ####
|
#### OFUNCTIONS MINI SUBSET ####
|
||||||
#### OFUNCTIONS MICRO SUBSET ####
|
#### OFUNCTIONS MICRO SUBSET ####
|
||||||
_OFUNCTIONS_VERSION=2.3.0-RC4
|
_OFUNCTIONS_VERSION=2.3.0-RC4
|
||||||
_OFUNCTIONS_BUILD=2020050302
|
_OFUNCTIONS_BUILD=2020051301
|
||||||
#### _OFUNCTIONS_BOOTSTRAP SUBSET ####
|
#### _OFUNCTIONS_BOOTSTRAP SUBSET ####
|
||||||
_OFUNCTIONS_BOOTSTRAP=true
|
_OFUNCTIONS_BOOTSTRAP=true
|
||||||
#### _OFUNCTIONS_BOOTSTRAP SUBSET END ####
|
#### _OFUNCTIONS_BOOTSTRAP SUBSET END ####
|
||||||
|
@ -2010,7 +2010,7 @@ function PreInit {
|
||||||
if [ "$SSH_COMPRESSION" != false ]; then
|
if [ "$SSH_COMPRESSION" != false ]; then
|
||||||
SSH_COMP=-C
|
SSH_COMP=-C
|
||||||
else
|
else
|
||||||
SSH_COMP=
|
SSH_COMP="-o Compression=no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Ignore SSH known host verification
|
## Ignore SSH known host verification
|
||||||
|
|
|
@ -72,8 +72,10 @@ SSH_COMPRESSION=true
|
||||||
## arcfour isn't accepted on most newer systems, you may then prefer any AES encryption if processor has aes-ni hardware acceleration
|
## arcfour isn't accepted on most newer systems, you may then prefer any AES encryption if processor has aes-ni hardware acceleration
|
||||||
## If the system does not provide hardware assisted acceleration, chacha20-poly1305@openssh.com is a good cipher to select
|
## If the system does not provide hardware assisted acceleration, chacha20-poly1305@openssh.com is a good cipher to select
|
||||||
## See: https://wiki.csnu.org/index.php/SSH_ciphers_speed_comparison
|
## See: https://wiki.csnu.org/index.php/SSH_ciphers_speed_comparison
|
||||||
|
## -o Compression=no is already handled by SSH_COMPRESSION option
|
||||||
## Uncomment the following line to use those optimizations, on secured links only
|
## Uncomment the following line to use those optimizations, on secured links only
|
||||||
#SSH_OPTIONAL_ARGS="-T -c aes128-ctr -o Compression=no -x"
|
#SSH_OPTIONAL_ARGS="-T -c aes128-ctr -x"
|
||||||
|
#SSH_OPTIONAL_ARGS="-T -c chacha20-poly1305@openssh.com -x"
|
||||||
|
|
||||||
## Ignore ssh known hosts. DANGER WILL ROBINSON DANGER ! This can lead to security issues. Only enable this if you know what you're doing.
|
## Ignore ssh known hosts. DANGER WILL ROBINSON DANGER ! This can lead to security issues. Only enable this if you know what you're doing.
|
||||||
SSH_IGNORE_KNOWN_HOSTS=false
|
SSH_IGNORE_KNOWN_HOSTS=false
|
||||||
|
|
Loading…
Reference in New Issue