29 lines
743 B
Plaintext
29 lines
743 B
Plaintext
# 게스트 두 대는 호스트에서 qemu 프로세스 두 개다
|
|
# Question: 호스트에서 게스트는 무엇으로 존재하고, 게스트가 보는 장치는 누가 만들어 주는가
|
|
direction: down
|
|
g0: "호스트 test-server" {
|
|
n0: "libvirtd" {
|
|
shape: rectangle
|
|
}
|
|
n1: "qemu-system-x86_64" {
|
|
shape: rectangle
|
|
}
|
|
n2: "qemu-system-x86_64" {
|
|
shape: rectangle
|
|
}
|
|
}
|
|
g1: "게스트 kc-lab-1" {
|
|
n3: "Debian 게스트 커널" {
|
|
shape: rectangle
|
|
}
|
|
}
|
|
g2: "게스트 kc-lab-2" {
|
|
n4: "Debian 게스트 커널" {
|
|
shape: rectangle
|
|
}
|
|
}
|
|
g0.n0 -> g0.n1: "프로세스 생성"
|
|
g0.n0 -> g0.n2: "프로세스 생성"
|
|
g0.n1 -> g1.n3: "virtio 디스크 · virtio-net"
|
|
g0.n2 -> g2.n4: "virtio 디스크 · virtio-net"
|