openssh
[Windows] Windows Command Line 원격 접속 (OpenSSH)
OpenSSH 윈도우에서 리눅스같이 원격으로 Command Line을 실행할 때 사용 대상 OS Windows 10 (PowerShell 가능 OS) 설치 OpenSSH 활성화 PowerShell 관리자 권한 실행 후 아래 명령어 실행 Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 실행 후 아래와 같이 뜨면 설치 완료 Path : Online : True RestartNeeded : False SSH Service 시작 설치 완료 후 SSH 서비스 시작 Start-Service sshd SSH Port 변경 SSH 서비스 최초 시작 시 C:\ProgramData\ssh\sshd_config 파일이 생성됨. 메모장 등 에디터로 열거나 아래 명..
[Linux] Ubuntu 18.04 OpenSSH 설치 (+ sftp 사용)
1. OpenSSH-Server 설치 sudo apt-get install openssh-server -y 2. 서비스 시작 sudo service ssh start 3. 포트 확인 sudo netstat -antp | grep ssh 4-1. [선택] Root 계정 ssh 허용 /etc/ssh/sshd_config 수정 vim /etc/ssh/sshd_config PermitRootLogin의 주석(#) 삭제 PermitRootLogin 뒤의 설정문을 yes로 수정 - 기존 문구 : without-password / prohibit-password / etc. 4-2. 서비스 재시작 sudo service ssh restart 5-1. sftp 사용 /etc/ssh/sshd_config 수정 vim /..