我想弄清楚的是:如何正确配置主机的网络,以满足所有这些要求?
>主机和VM都有2个网络接口(公共和私有).
>主机和VM都可以独立防火墙.
>理想情况下,VM流量不必遍历主机防火墙.
>虚拟机可以看到真正的远程IP地址,而不是主机.
目前,主机的网络接口配置为网桥. eth0和eth1没有分配IP地址,但br0和br1有.
主机上的/ etc / network / interfaces:
# The primary network interfaceauto br1iface br1 inet static address 24.123.138.34 netmask 255.255.255.248 network 24.123.138.32 broadcast 24.123.138.39 gateway 24.123.138.33 brIDge_ports eth1 brIDge_stp offauto br1:0iface br1:0 inet static address 24.123.138.36 netmask 255.255.255.248 network 24.123.138.32 broadcast 24.123.138.39# Internal networkauto br0iface br0 inet static address 192.168.1.1 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 brIDge_ports eth0 brIDge_stp off
这是VM的libvirt / qemu配置文件:
<domain type='kvm'> <name>apps</name> <uuID>636b6620-0949-bc88-3197-37153b88772e</uuID> <memory>393216</memory> <currentMemory>393216</currentMemory> <vcpu>1</vcpu> <os> <type arch='i686' machine='pc'>hvm</type> <boot dev='hd'/> </os> <features> <acpi/> <APIc/> <pae/> </features> <clock offset='utc'/> <on_poweroff>destroy</on_poweroff> <on_reboot>restart</on_reboot> <on_crash>restart</on_crash> <devices> <emulator>/usr/bin/kvm</emulator> <disk type='file' device='cdrom'> <target dev='hdc' bus='IDe'/> <Readonly/> </disk> <disk type='file' device='disk'> <source file='/raID/kvm-images/apps.qcow2'/> <target dev='vda' bus='virtio'/> </disk> <interface type='brIDge'> <mac address='54:52:00:27:5e:02'/> <source brIDge='br0'/> <model type='virtio'/> </interface> <interface type='brIDge'> <mac address='54:52:00:40:cc:7f'/> <source brIDge='br1'/> <model type='virtio'/> </interface> <serial type='pty'> <target port='0'/> </serial> <console type='pty'> <target port='0'/> </console> <input type='mouse' bus='ps2'/> <graphics type='vnc' port='-1' autoport='yes' keymap='en-us'/> </devices></domain>
除了我的其他防火墙规则外,防火墙脚本还包含此命令以传递发往KVM来宾的数据包:
# Allow brIDged packets to pass (for KVM guests).iptables -A FORWARD -m physdev --physdev-is-brIDged -j ACCEPT
(不适用于这个问题,但我的桥接配置的副作用似乎是我不能干净地关闭.内核最终告诉我“unregister_netdevice:等待br1变得自由”而且我必须硬复位系统.也许是一个我做过蠢事的标志?)
解决方法 您将VM桥接到错误的接口.它们应桥接到连接到外部世界的网络接口(在您的情况下为br1).请记住,每个VM还应在guest虚拟机中设置其IP地址,而不是在主机上设置.
总结以上是内存溢出为你收集整理的linux – 适当的网络配置,使KVM来宾位于主机的同一网络上全部内容,希望文章能够帮你解决linux – 适当的网络配置,使KVM来宾位于主机的同一网络上所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)