|
@@ -0,0 +1,42 @@
|
|
|
|
|
+##
|
|
|
|
|
+## 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
|
|
|
|
|
+
|