1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/sshd.md

22 lines
490 B
Markdown
Raw Normal View History

# sshd
> Secure Shell 데몬 - 원격 머신이 현재 머신에 안전하게 로그인할 수 있도록 허용합니다.
> 원격 머신은 이 머신에서 실행되는 것처럼 명령을 실행할 수 있습니다.
> 더 많은 정보: <https://man.openbsd.org/sshd>.
- 백그라운드에서 데몬 시작:
`sshd`
- 포그라운드에서 sshd 실행:
`sshd -D`
- 자세한 출력으로 실행 (디버깅 용도):
`sshd -D -d`
- 특정 포트에서 실행:
`sshd -p {{포트}}`