我想借助 KVM 在笔记本电脑上创建虚拟机。我已经安装了所需的所有必要软件包。
我想设置 Bridge 网络,以便我的虚拟机可以获得本地 IP 子网。
这是我的 /etc/network/interface 文件:
auto br0
iface br0 inet static
address 192.168.0.101
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8
bridge_ports wlp1s0
bridge_stp off
bridge_fd 0
bridge_maxwait 0
但此配置不起作用,因为设置后我无法访问互联网。我不知道问题出在哪里。请提出任何建议!!