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.
41 lines
1.5 KiB
41 lines
1.5 KiB
## |
|
## ssh_config -- OpenSSH Client Configuration |
|
## |
|
|
|
Host localhost |
|
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 |
|
CheckHostIP yes |
|
Protocol 1,2 |
|
HostKeyAlgorithms ssh-rsa,ssh-dss |
|
PreferredAuthentications hostbased,publickey,keyboard-interactive,password |
|
Cipher 3des |
|
Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc |
|
MACs hmac-sha1,hmac-md5,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 |
|
Compression yes |
|
CompressionLevel 4 |
|
ConnectionAttempts 2 |
|
PubkeyAuthentication yes |
|
DSAAuthentication yes |
|
RSAAuthentication yes |
|
ChallengeResponseAuthentication yes |
|
PasswordAuthentication yes |
|
NumberOfPasswordPrompts 2 |
|
RhostsAuthentication no |
|
RhostsRSAAuthentication no |
|
StrictHostKeyChecking no |
|
UsePrivilegedPort no |
|
EscapeChar ~ |
|
ForwardAgent yes |
|
ForwardX11 no |
|
GatewayPorts no |
|
KeepAlive no |
|
LogLevel INFO |
|
|
|
|