| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ##
- ## sshd_config -- OpenSSH Daemon Configuration
- ##
- Port 22
- ListenAddress 127.0.0.1
- Subsystem sftp @l_prefix@/libexec/openssh/sftp-server
- Protocol 2,1
- HostKey @l_prefix@/etc/openssh/ssh_host_key
- HostKey @l_prefix@/etc/openssh/ssh_host_rsa_key
- HostKey @l_prefix@/etc/openssh/ssh_host_dsa_key
- ServerKeyBits 768
- KeyRegenerationInterval 1h
- PidFile @l_prefix@/var/openssh/openssh.pid
- SyslogFacility AUTH
- LogLevel INFO
- PubkeyAuthentication yes
- RSAAuthentication yes
- PasswordAuthentication yes
- HostbasedAuthentication no
- RhostsRSAAuthentication no
- StrictModes yes
- IgnoreRhosts yes
- KeepAlive yes
- GatewayPorts no
- AllowTcpForwarding yes
- X11Forwarding @l_x11forwarding@
- Compression yes
- UsePrivilegeSeparation no
- LoginGraceTime 2m
- MaxStartups 10:30:60
- PermitRootLogin no
- PermitEmptyPasswords no
- UseLogin no
- UseDNS yes
- PrintMotd yes
- PrintLastLog yes
- PermitUserEnvironment yes
|