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
You can also use netctl and the qemu bridge helper to control the bridge and tun/tap interfaces. Replace `DEVICENAME` with your ethernet card's device name.
64
+
65
+
### Create netctl configuration file in /etc/netctl (f.e. /etc/netctl/kvm-bridge)
66
+
```
67
+
Description="Bridge Interface br10 : DEVICENAME"
68
+
Interface=br10
69
+
Connection=bridge
70
+
BindsToInterfaces=(DEVICENAME)
71
+
IP=dhcp
72
+
# If you want also for DHCPv6,uncomment below line
73
+
#IP6=dhcp
74
+
```
75
+
76
+
### Activate netctl bridge handler with system boot
77
+
```
78
+
sudo netctl enable kvm-bridge
79
+
```
80
+
81
+
### Create bridge whitelist file for qemu (/etc/qemu/bridge.conf)
82
+
```
83
+
allow br10
84
+
```
85
+
86
+
## Attach Bridge to QEMU
87
+
Now you'll have to add the following line to `basic.sh`, replacing `-netdev user,id=net0`. Change `br10` to your corresponding device name.
0 commit comments