윈도우에서는 putty를 이용하면 되지만 Ubuntu에서는 ssh를 이용하여 접속 할 것이다.
yum install openssh*
chkconfig sshd on
reboot
reboot 이후
service network restart
이러면 Server01에서의 Network 설정은 끝난다.
Ubuntu에서 Server01 원격접속(SSH)
우분투에도 SSH 명령어를 설치해 주어야 하는데 이 과정은 검색하면 다 나오니 생략
changhyun@changhyun-desktop:~$ ssh root@192.168.56.101
Unable to negotiate with 192.168.56.101 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss
아마 대부분 SSH 명령어로 Server01에 접속하려면 저런 오류가 뜰 것이다.
해결방법
changhyun@changhyun-desktop:~$ ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.56.101
위와 같은 방식으로 해결하였다.
위와 같이 접속이 된다면 성공
추가로 root계정으로 접근이 되지 않는다면 server01 터미널 창을 열어서
vi /etc/ssh/sshd_config
PermitRootLogin, PasswordAuthentication 의 주석을 풀어주고 둘다 yes로 바꾸어 주면 된다.
'Linux' 카테고리의 다른 글
server01 host 설정 - 파일럿 서버 4 (0) | 2022.08.23 |
---|---|
CentOS 6 yum install 오류 (0) | 2022.08.23 |
Server Network 설정 - 파일럿 서버 2 (0) | 2022.08.23 |
VirtualBox(CentOS 6) Server 만들기 - 파일럿 서버 1 (0) | 2022.08.23 |
Ubuntu 22.04 Tensorflow GPU 환경 구축 (0) | 2022.08.01 |