From eb7c0e395cd75703803d2d1dd62254a2f82b78bd Mon Sep 17 00:00:00 2001 From: alban Date: Thu, 24 Sep 2020 15:03:49 +0200 Subject: [PATCH] [fix] README's cosmetic --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 275b02f..9f85cab 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ But the VM will not be able to exchange data on LAN. Here is the documentation on how to setup a bridge interface on your machine. It is a bit complex, but follow the instructions and it should be fine... -#### kvm:bridge 0. First some variables / names we will use +### kvm:bridge 0. First some variables / names we will use ``` # 0. Names / concepts HOST The name used to define your laptop (or any other machine running qemu) @@ -144,7 +144,7 @@ export IP_RANGE=/24 export SU='sudo ' ``` -#### kvm:bridge 1. Configuring HOST network interfaces +### kvm:bridge 1. Configuring HOST network interfaces ``` # 1. Configure HOST: set up bridge over HOST_IF @@ -165,7 +165,7 @@ $SU sysctl net.ipv4.ip_forward=1 $SU ip address show dev ${HOST_IF} | grep global || echo -e "\n\e[31mOops.... Remove all IP addresses from ${HOST_IF}! Use:\e[0m\n\n$SU ip address del (address/range shown above) dev ${HOST_IF}" ``` -#### kvm:bridge 2. Booting the VM +### kvm:bridge 2. Booting the VM Notice how the `net` model changed: we have a MAC address and use the `tap` interface to exchange network packets. ```