Explorar el Código

"rijndael" was renamed to "aes" in OpenSSH 3.1p1 because that's the official name of this cipher now that AES is a standard.

Ralf S. Engelschall hace 24 años
padre
commit
be691b102c
Se han modificado 2 ficheros con 43 adiciones y 1 borrados
  1. 1 1
      openssh/openssh.spec
  2. 42 0
      openssh/ssh_config

+ 1 - 1
openssh/openssh.spec

@@ -36,7 +36,7 @@ Distribution: OpenPKG [REL]
 Group:        Cryptography
 License:      BSD
 Version:      3.1p1
-Release:      20020307
+Release:      20020309
 
 #   list of sources
 Source0:      ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz

+ 42 - 0
openssh/ssh_config

@@ -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
+