web-dev-qa-db-ja.com

ブリッジインターフェイスとKVM

KVMを使用するUbuntuサーバーとVMがあります。計画では、サーバーとVMに静的IPアドレスが割り当てられます。これに利用可能ないくつかの例を組み合わせて/ etc/network/interfacesを変更しようとしました

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.50
netmask 255.255.255.0
gateway 192.168.0.1

auto br0
iface br0 inet static
address 192.168.0.51
network 192.168.0.0
netmask 255.255.255.0
gateway 192.168.0.1
bridge_ports eth0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off

ネットワークを再起動すると、eth0にはIPアドレスがありませんが、br0にはIPアドレスがあります。これはソリューションの一部ですが、ホストにアクセスできなくなったため、必要なものではありません。 VMはすでにbr0を使用するように構成されており、この部分は「一種の作業」です...

どんな助けも本当に感謝しています。

ありがとう!

7
auhorn

IPはbr0にあるはずです。eth0にはIPがありません。このようなもの :

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
    address xxx.xxx.xxx.xxx
    netmask xxx.xxx.xxx.xxx
    gateway xxx.xxx.xxx.xxx
    bridge_ports eth0
    bridge_stp off
    bridge_fd 0
    bridge_maxwait 0
6
shiny