"Sshd"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 13개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{소문자}}
==개요==
==개요==
;OpenSSH SSH daemon; openssh-daemon; sshd
;OpenSSH SSH daemon; openssh-daemon; sshd
;SSH 데몬, 보안쉘 데몬
;/usr/sbin/sshd
;SSH 데몬, 보안쉘 데몬, 리눅스 SSH 서버
*리눅스에 SSH(보안쉘) 접속을 할 수 있게 해주는 SSH 서버 데몬
*리눅스에 SSH(보안쉘) 접속을 할 수 있게 해주는 SSH 서버 데몬
*설정 파일은 [[/etc/ssh/sshd_config]]
*설정 파일은 [[/etc/ssh/sshd_config]]
*기본 포트로 22번을 사용
<syntaxhighlight lang='console'>
[root@zetawiki ~]# service sshd status
openssh-daemon (pid  1993) is running...
</syntaxhighlight>
<syntaxhighlight lang='console'>
[root@zetawiki ~]# 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 
</syntaxhighlight>
:→ IPv4, IPv6 모두 LISTEN 중


==기본 명령어==
==기본 명령어==
{{참고|/etc/init.d/sshd}}
{{참고|/etc/init.d/sshd}}
<source lang='bash'>
다음 명령어로 시작(start), 중지(stop), 재시작(restart)을 할 수 있다.
<syntaxhighlight lang='bash'>
service sshd start
service sshd start
service sshd stop
service sshd stop
service sshd restart
service sshd restart
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[리눅스 sshd 재시작]]
*[[sshd 버전 확인]]
*[[/etc/ssh/sshd_config]]
*[[/etc/ssh/sshd_config]]
*[[SSH 포트 변경]]
*[[리눅스 SSH 클라이언트]]
*[[SSH]]
*[[SSH]]
*[[데몬]]
*[[데몬]]


[[분류: SSH]]
[[분류: SSH]]
[[분류: /usr/sbin]]

2021년 9월 24일 (금) 23:20 기준 최신판

1 개요[ | ]

OpenSSH SSH daemon; openssh-daemon; sshd
/usr/sbin/sshd
SSH 데몬, 보안쉘 데몬, 리눅스 SSH 서버
  • 리눅스에 SSH(보안쉘) 접속을 할 수 있게 해주는 SSH 서버 데몬
  • 설정 파일은 /etc/ssh/sshd_config
  • 기본 포트로 22번을 사용
[root@zetawiki ~]# service sshd status
openssh-daemon (pid  1993) is running...
[root@zetawiki ~]# 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 }}