2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-14 10:20:31 +00:00

polished according to comments.

This commit is contained in:
bybai
2015-09-09 23:12:59 -04:00
committed by GONG Jie
parent 300fc33a5b
commit ad4d5af1c1

View File

@ -6,16 +6,16 @@ Install PowerKVM
The process to set up PowerKVM hypervisor with xCAT is the same with Diskfull installation. Prepare powerKVM iso, such as ibm-powerkvm-2.1.1.0-22.0-ppc64-gold-201410191558.iso, then refer to :ref:`diskful_installation` to install PowerKVM hypervisor.
Check bridge setting after installation finished
------------------------------------------------
Verifying hypervisor bridges
----------------------------
After PowerKVM hypervisor is installed successfully, you can get the bridge information: ::
After PowerKVM hypervisor is installed successfully, you can get the bridge information by running ``brctl show``: ::
# brctl show
bridge name bridge id STP enabled interfaces
br0 8000.000000000000 no eth0
If the bridge show is not like above, it means that you may not run xCAT post install script. You can manually run following commands to create the bridge, for example: ::
If there are no bridges configured, the xCAT post install script will not work. You must manually create a bridge. The following is provided as an example for creating a bridge bro using interface eth0 with IP address: 10.1.101.1/16, for example: ::
IPADDR=10.1.101.1/16
brctl addbr br0
@ -25,4 +25,4 @@ If the bridge show is not like above, it means that you may not run xCAT post in
ip link set br0 up
ip addr del dev eth0 $IPADDR
Note: During ubuntu LE virtual machines installation, the virtual machines need to access Internet, so make sure the PowerKVM hypervisor is able to access Internet.
Note: During any of ubuntu installation, the virtual machines need to access Internet, so make sure the PowerKVM hypervisor is able to access Internet.