✅ 리눅스 머신에서 SSH 서버 설치1. SSH 서버 설치 확인sudo apt updatesudo apt install openssh-server -y2. SSH 서비스 상태 확인 및 시작sudo systemctl status ssh# 실행 중이 아니면 다음 명령으로 시작sudo systemctl start sshsudo systemctl enable ssh메시지가 active (running) 이어야 정상입니다.3. 포트 22 열려 있는지 확인sudo ufw allow sshsudo ufw enablesudo ufw status또는 iptables 기반이라면:sudo iptables -L4. VMware 네트워크 모드 확인 (중요)VM이 브리지 모드 또는 NAT 모드인지 확인Windows에서 172.3..