Revision 4cad9a5b
Added by Jim Pingle over 7 years ago
src/etc/sshd | ||
---|---|---|
81 | 81 |
foreach ($keys as $key) { |
82 | 82 |
$sshconf .= "HostKey {$sshConfigDir}/ssh_host_{$key['suffix']}key\n"; |
83 | 83 |
} |
84 |
$sshconf .= "Compression yes\n";
|
|
84 |
$sshconf .= "Compression delayed\n";
|
|
85 | 85 |
$sshconf .= "ClientAliveInterval 30\n"; |
86 | 86 |
$sshconf .= "PermitRootLogin yes\n"; |
87 | 87 |
if (isset($config['system']['ssh']['sshdkeyonly'])) { |
Also available in: Unified diff
Change sshd compression to 'delayed' to match current FreeBSD default. Fixes #8245