From 932495d275ed172d113a51f1011998d4ccab2c41 Mon Sep 17 00:00:00 2001
From: Saverio Miroddi <saverio.pub2@gmail.com>
Date: Wed, 20 Jan 2021 22:24:20 +0100
Subject: [PATCH] README: Correct bridge interface configuration/script
 references

The README was not reflecting the actual content of the scripts.
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 158eefc..583cfad 100644
--- a/README.md
+++ b/README.md
@@ -182,7 +182,7 @@ root@ucbvax:~# halt
 
 `/etc/network/interfaces`
 ```
-iface br0 inet static
+iface virbr0 inet static
   bridge_ports eth0
   address 192.168.100.1
   netmask 255.255.255.0
@@ -195,7 +195,7 @@ iface br0 inet static
 ```
 #!/bin/sh
 
-brctl addif br0 $1
+brctl addif virbr0 $1
 ifconfig $1 up
 ```
 
@@ -205,7 +205,7 @@ ifconfig $1 up
 #!/bin/sh
 
 ifconfig $1 down
-brctl delif br0 $1
+brctl delif virbr0 $1
 ```
 
 ## macOS bridged networking