为KVM设置桥接网络

Micheal Chen Lv6

date: 2010-03-21 21:21:51

0.install the package bridge-utils

1
2
3
yum install bridge-utils

Installed: bridge-utils

1.Stop the Ethernet device that you plan to create a bridge for using the ifdown command

1
ifdown eth0

2.configure a bridge. Create the file /etc/sysconfig/network-scripts/ifcfg-br0

1
2
3
4
5
6
vi /etc/sysconfig/network-scripts/ifcfg-br0

DEVICE=br0
BOOTPROTO=dhcp
TYPE=Bridge
ONBOOT=yes

3.Modify /etc/sysconfig/network-scripts/ifcfg-eth0

1
2
3
4
5
6
7
vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
#BOOTPROTO=DHCP
HWADDR=00:18:8B:48:D6:8B
ONBOOT=yes
BRIDGE=br0

4.Restart the network and run ifconfig to check

1
2
3
/etc/init.d/network restart

ifconfig

5.Prepare the bridge for KVM

1
2
3
4
5
6
7
8
# Add a script to connect your guest instance to the bridge on guest boot
vi /etc/qemu-ifup

#!/bin/bash
BRIDGE=$(/sbin/ip route list | awk '/^default / { print $NF }')
/sbin/ifconfig $1 0.0.0.0 up
/usr/sbin/brctl addif $BRIDGE $1
# END OF SCRIPT
1
2
3
4
5
6
# Silence a qemu warning by creating a noop qemu-ifdown script
vi /etc/qemu-ifdown

#!/bin/bash
# END OF SCRIPT
chmod +x /etc/qemu-if*

6.Start VM

1
2
qemu-kvm -hda centos5x.img -m 512 
-net nic,macaddr=00:16:3e:88:${INSTANCE}:00 -net tap
  • Title: 为KVM设置桥接网络
  • Author: Micheal Chen
  • Created at : 2010-03-21 21:21:51
  • Updated at : 2025-03-22 21:00:48
  • Link: https://www.xhis.com/hexo/2010/03/21/notes/为KVM设置桥接网络/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
为KVM设置桥接网络