You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`bzImage` is the path to linux kernel bzImage. The bzImage file is in a specific format,
41
50
containing concatenated `bootsect.o + setup.o + misc.o + piggy.o`. `initrd` is the path to
42
51
initial RAM disk image, which is an optional argument.
43
52
`disk-image` is the path to disk image which can be mounted as a block device via virtio. For the reference Linux guest, ext4 filesystem is used for disk image.
44
53
54
+
### Exit Emulator
55
+
45
56
To exit kvm-host, press "Ctrl-A", release both keys, and then press "x".
46
57
58
+
### Test the Guest virtio-net Interface
59
+
60
+
The guest is reachable from the host through a dedicated bridge
61
+
(`kvmbr0` by default) that owns the TAP interface kvm-host creates at
62
+
startup. The bridge is a host-guest link only — no internet egress —
63
+
so the helpers never modify the host's default route.
64
+
65
+
1. Start `kvm-host` and locate the TAP it created. `kvm-host` requests
66
+
`tap%d` from `TUNSETIFF`, so the kernel assigns the first free
67
+
`tapN`; it is usually but not always `tap0`. The interface comes up
68
+
`DOWN` because nothing has claimed it yet:
69
+
70
+
```shell
71
+
$ ip a
72
+
...
73
+
11: tap0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
0 commit comments