CloudStack에서 System VM(Debian 템플릿으로 생성되는)에 접속하는 방법
(Console Proxy, SSVM, Virtual Router 등)

1. SSH 이용
해당 VM이 들어있는 Host에서(Dom0) Link Local IP로 접속한다. (System VM의 169.254.x.x IP)

ssh -i /root/.ssh/id_rsa.cloud -p 3922 root@169.254.x.x


2. XenCenter Console로 직접 접속
root 패스워드는 아래와 같다.

6m1ll10n

중간에 막대 2개는 파이프가 아니고 소문자 L 이다.

※ SCP로 파일 복사해 넣기
Dom0의 /root/test.sh 파일을 System VM의 /root/ 에 복사하는 예제

scp -i /root/.ssh/id_rsa.cloud -P 3922 /root/test.sh root@169.254.x.x:/root/