본문 바로가기

Linux/설정 및 명령어

Session Timeout





Session Timeout






SSH Session

[root@localhost ~]# vi /etc/ssh/sshd_config

...

#ClientAliveInterval 0

#ClientAliveCountMax 3

ClientAliveInterval 300

ClientAliveCountMax 6

...

요청시간(300초) * 요청횟수(6) = 1800(초)


Session Timeout

[root@localhost ~]# vi /etc/profile

...

TMOUT = 300

export TMOUT

...

300초 후 로그아웃



'Linux > 설정 및 명령어' 카테고리의 다른 글

특정 계정에만 su 권한 주기  (0) 2016.11.22
CentOS 계정 중복 접속 차단  (0) 2016.11.07
root 원격 접속 제한  (0) 2016.11.07
일반 계정에 root 권한 부여  (0) 2016.11.07
insmod, rmmod와 modprobe  (0) 2016.10.31