作者:幽幽独舞99 | 来源:互联网 | 2014-05-27 21:08
为了是虚拟机可被外部网络访问,有时后nat不能满足生产和实验要求,这时候就需要网卡的桥接设置了。实验环境:centos5.564位,DELLR51032GRAM2.4*8XEON,KVM,1、首先配置bridge,#cd/etc/sysconfig/network-scripts/#vimifcfg-eth0DEVIC
为了是虚拟机可被外部网络访问,有时后nat不能满足生产和实验要求,这时候就需要网卡的桥接设置了。
实验环境:
centos 5.5 64位 , DELL R510 32G RAM 2.4*8 XEON, KVM,
1、首先配置bridge,
#cd /etc/sysconfig/network-scripts/
# vim ifcfg-eth0
DEVICE=eth0
OnBOOT=yes
BRIDGE=br0
HWADDR=b8:ac:6f:::e5
#vim ifcfg-br0
DEVICE=br0
TYPE=Bridge
BOOTPROTO=static
OnBOOT=yes
IPADDR=10.10.21.70
NETMASK=255.255.255.192
GATEWAY=10.10.21.1
重启network,在创建虚拟机的时候就可以选择eth0 br0了,
3、开启防火墙允许通过这块bridge设备转发
#
iptables -I FORWARD -m physdev --physdev-is-bridged -j ACCEPT
# service iptables save
4、为linux kvm做的网络bridge就好了,so easy!
5、既然做好了bridge,就来进行pxe安装:
#virt-install --name centos5 --vcpus=2 --ram=2048 --accelerate
--vnc --network bridge:br0 --disk
path=/var/lib/libvirt/images/centos5.img,size=10 --network
bridge:br0 --pxe
巧妙的利用ks.cfg自动安装的配置文件,可以省区平时自己安装个系统的大量时间,当然在进行几十台上百台的批量安装时候,还是直接pxe-autoinstall好。
#virt-install --name centos5 --vcpus=2 --ram=2048 --accelerate
--vnc --network bridge:br0 --disk
path=/var/lib/libvirt/images/centos5.img,size=10 --network
bridge:br0 --cdrom /iso/centos-5.5-dvd.iso -x
"ks=ftp://10.10.21.1/pub/ks.cfg"