You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
## |
|
## ssh_config -- OpenSSH Client Configuration |
|
## |
|
|
|
Host localhost |
|
Cipher blowfish |
|
Compression no |
|
ForwardX11 yes |
|
KeepAlive yes |
|
|
|
# Global Default Settings |
|
# (keep this section last here, because |
|
# the rule is "first matching is used") |
|
Host * |
|
BatchMode no |
|
ChallengeResponseAuthentication yes |
|
CheckHostIP yes |
|
Cipher 3des |
|
Ciphers 3des-cbc,blowfish-cbc,aes128-cbc |
|
Compression yes |
|
CompressionLevel 4 |
|
ConnectionAttempts 2 |
|
DSAAuthentication yes |
|
EscapeChar ~ |
|
FallBackToRsh no |
|
ForwardAgent yes |
|
ForwardX11 no |
|
GatewayPorts no |
|
KeepAlive no |
|
LogLevel INFO |
|
MACs hmac-sha1,hmac-md5,hmac-ripemd160 |
|
NumberOfPasswordPrompts 2 |
|
PasswordAuthentication yes |
|
Protocol 1,2 |
|
PubkeyAuthentication yes |
|
RSAAuthentication yes |
|
RhostsAuthentication no |
|
RhostsRSAAuthentication no |
|
StrictHostKeyChecking no |
|
UsePrivilegedPort no |
|
UseRsh no |
|
|
|
|