我对网络还很陌生,无法理解这一点。
我正在尝试设置 KVM-Qemu,以便可以运行一些虚拟机。我遵循的说明告诉我使用 eth0 和 eth1 作为本地和 WAN 连接。我只有用于 WAN 的 eth0。我创建(或尝试)eth1 和适当的桥接,但当我重新启动网络接口时,这总是断开我与服务器的连接。
我只有 eth0,您知道如何修复这个问题吗?
说明如下:
http://www.cyberciti.biz/faq/kvm-virtualization-in-redhat-centos-scientific-linux-6/
对于桥接,我使用主机为我提供的附加 IP 设置。
开始 eth0 配置:
##Note for customers who want to create bridged networking for virtualisation:
##Gateway is set in separate file
##Do not forget to change interface in file route-eth0 and rename this file
device: eth0
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
HWADDR=50:46:5d:xx:xx:xx
IPADDR=144.76.xx.xxx
NETMASK=255.255.255.255
SCOPE="peer 144.76.yy.yyy"
IPV6INIT=yes
IPV6ADDR=2a01:4f8:191:7282::2/64
IPV6_DEFAULTGW=fe80::1
IPV6_DEFAULTDEV=eth0
此时 eth1 不存在(尽管说明说它应该存在)。
然后我根据说明创建 eth1:
DEVICE=eth1
ONBOOT=yes
HWADDR=00:30:48:C6:0A:D9
BRIDGE=br1
然后我添加桥梁:
DEVICE=br0
TYPE=Bridge
BOOTPROTO=static
ONBOOT=yes
## setup LAN/VLAN ips as per your needs ##
IPADDR=10.10.29.66
NETMASK=255.255.255.192
DELAY=0
DEVICE=br1
TYPE=Bridge
BOOTPROTO=static
ONBOOT=yes
## setup INTERNET ips as per your needs ##
IPADDR=74.ww.xx.yy
NETMASK=255.255.255.248
GATEWAY=74.ww.xx.yy
DELAY=0
(我用主机为 br1 提供的设置替换了桥接器的特定设置)
然后我重新启动网络,但失败了。
有任何想法吗? :)
答案1
ipv6 绑定看起来有些可疑。必须使用语句 NETWORKING_IP6=yes 绑定 ipv6 网络,并且必须输入主机名。有关更多信息,我找到了以下教程:https://wikis.uit.tufts.edu/confluence/display/TUSKpub/Configure+Pair+Bonding,+VLANs,+and+Bridges+for+KVM+Hypervisor