我們目前正在從 vmware 伺服器遷移到 kvm。到目前為止,除了副橋外,一切都很順利。
我們的網頁佈局如下:
具有 3 個連接埠的防火牆
eth0 Public Internet IP address
eth1 Internal network 192.168.200.x
eth2 DMZ internal network 192.168.202.x
在 KVM 主機上,我們還有兩個 NIC,一個連接到防火牆的 eth1 端口,另一個連接到防火牆的 eth2 端口。
我們在 KVM 主機中定義了兩個橋接器,因此我們有一個用於內部伺服器 (192.168.200.x) 的網橋和一個用於 DMZ 伺服器 (192.168.202.x) 的網橋
KVM主機的網路配置如下所示:
auto lo br0 br1 eth0 eth1
iface lo inet loopback
iface eth0 inet manual
iface br0 inet static
address 192.168.200.249
netmask 255.255.255.0
broadcast 192.168.200.255
network 192.168.200.0
bridge_ports eth0
gateway 192.168.200.4
iface eth1 inet manual
iface br1 inet static
address 192.168.202.249
netmask 255.255.255.0
broadcast 192.168.202.255
network 192.168.202.0
bridge_ports eth1
gateway 192.168.202.4
位於 192.168.200.x 網路(綁定到 br0)的 KVM 來賓可以正常通訊。但 IP 為 192.168.202.x(綁定到 br1)的 KVM 來賓只能隨機連線。有時,訪客有 20 秒的連接,然後幾分鐘/幾小時沒有連接。
有任何想法嗎?
答案1
最後發現配置完全正確,但是網路卡有問題。
用另一個品牌的型號更換第二塊網卡 (eth1) 後,它現在可以按預期工作