Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

sshd_config 594B

123456789101112131415161718192021222324252627282930313233
  1. Port ${SSH_LISTEN_PORT}
  2. Protocol 2
  3. AddressFamily any
  4. ListenAddress 0.0.0.0
  5. ListenAddress ::
  6. LogLevel INFO
  7. HostKey /data/ssh/ssh_host_ed25519_key
  8. HostKey /data/ssh/ssh_host_rsa_key
  9. HostKey /data/ssh/ssh_host_dsa_key
  10. HostKey /data/ssh/ssh_host_ecdsa_key
  11. AuthorizedKeysFile .ssh/authorized_keys
  12. UseDNS no
  13. AllowAgentForwarding no
  14. AllowTcpForwarding no
  15. PrintMotd no
  16. PermitUserEnvironment yes
  17. PermitRootLogin no
  18. ChallengeResponseAuthentication no
  19. PasswordAuthentication no
  20. PermitEmptyPasswords no
  21. AllowUsers ${USER}
  22. Banner none
  23. Subsystem sftp /usr/lib/ssh/sftp-server
  24. AcceptEnv GIT_PROTOCOL