1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | sshd_config 수정 sudo vi /etc/ssh/sshd_config # To enable empty passwords, change to yes (NOT RECOMMENDED) PermitEmptyPasswords no # Change to yes to enable challenge-response passwords (beware issues with # some PAM modules and threads) ChallengeResponseAuthentication no # Change to no to disable tunnelled clear text passwords PasswordAuthentication yes SSH 서비스 재시작 sudo service ssh restart OR sudo service sshd restart | cs |
'Linux Shell Programming' 카테고리의 다른 글
Linux 명령어(쉘 프로그래밍) - 예제(function 이용하기, daily backup) (0) | 2018.01.09 |
---|---|
Linux 명령어(쉘 프로그래밍) - 예제 - 반복문(for, while), 구구단 (0) | 2018.01.09 |
Linux 명령어(쉘 프로그래밍) - 예제 (파일 또는 디렉터리 여부 확인 + Digit Count) (0) | 2018.01.09 |
Linux 명령어(쉘 프로그래밍) - 예제(서브쉘로 실행) if else 조건문, 숫자비교 (0) | 2018.01.09 |
Linux 명령어(쉘 프로그래밍) - 예제(2자리 연산, 인자 받기, 패스워드가 *로 찍히게 하기) (0) | 2018.01.08 |