瀏覽代碼

Implement Session idle time out

tags/v0.41.0
Matthieu DERASSE 8 年之前
父節點
當前提交
3542a1f534
共有 2 個文件被更改,包括 6 次插入0 次删除
  1. +4
    -0
      openssh/files/sshd_config
  2. +2
    -0
      pillar.example

+ 4
- 0
openssh/files/sshd_config 查看文件

@@ -66,6 +66,10 @@
{{ option_default_uncommented('SyslogFacility', 'AUTH') }}
{{ option_default_uncommented('LogLevel', 'INFO') }}

# Session idle time out
{{ option_default_uncommented('ClientAliveInterval', 0) }}
{{ option_default_uncommented('ClientAliveCountMax', 3) }}

# Authentication:
{{ option_default_uncommented('LoginGraceTime', 120) }}
{{ option_default_uncommented('PermitRootLogin', 'yes') }}

+ 2
- 0
pillar.example 查看文件

@@ -11,6 +11,8 @@ sshd_config:
ServerKeyBits: 768
SyslogFacility: AUTH
LogLevel: INFO
ClientAliveInterval: 0
ClientAliveCountMax: 3
LoginGraceTime: 120
PermitRootLogin: 'yes'
PasswordAuthentication: 'no'

Loading…
取消
儲存