메뉴 닫기

ssh timeout 설정

ssh timeout 설정을 해놓으면, 지정한 시간이 지날 시 ssh 연결이 끊어집니다.

이 설정을 이용하면, 작업 중 오래 자리를 비우면, 자동으로 끊기게 되서 보안상 도움이 될 수 있습니다.

 

timeout 설정을 하는데는 .bash_porfile 파일을 수정하거나 /etc/profile을 수정하는 방법이 있습니다.

 

 

1 .bash_profile 설정 파일 수정

/root나 사용자 계정의 .bash_profile에 들어가서 다음 내용을 추가시켜 줍니다.

# vi /root/.bash_proflie

export TMOUT=300(‘초’ 단위)

 

설정을 했으면,  source 명령어로 적용을 시켜줍니다.

# source /root/.bash_proflie

 

2. /etc/profile 설정 파일 수정

/etc/profile 파일에 접속해서 위 내용과 동일하게 추가시켜줍니다.

# vi /etc/profile

export TMOUT=300(‘초’ 단위)

 

설정을 했으면, source 명령어로 적용을 시켜줍니다.

# source /root/.bash_profile

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x