sshd

Jmnote bot (토론 | 기여)님의 2015년 2월 6일 (금) 03:04 판 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))

1 개요

OpenSSH SSH daemon; openssh-daemon; sshd
/usr/sbin/sshd
SSH 데몬, 보안쉘 데몬, 리눅스 SSH 서버
  • 리눅스에 SSH(보안쉘) 접속을 할 수 있게 해주는 SSH 서버 데몬
  • 설정 파일은 /etc/ssh/sshd_config
  • 기본 포트로 22번을 사용
[root@jmnote ~]# service sshd status
openssh-daemon (pid  1993) is running...
[root@jmnote ~]# netstat -anp | grep LISTEN | grep sshd
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      1993/sshd           
tcp        0      0 :::22                       :::*                        LISTEN      1993/sshd
→ IPv4, IPv6 모두 LISTEN 중

2 기본 명령어

다음 명령어로 시작(start), 중지(stop), 재시작(restart)을 할 수 있다.

service sshd start
service sshd stop
service sshd restart

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}