Difference between revisions of "Networking with the XAPI toolstack"

From Xen
(notes about management interface)
m
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
  +
The script for [[Installing_Linux_on_Kronos|installing a Linux VM on Kronos]] provides for basic networking support.
Currently, Project Kronos does not include scripts to configure networking automatically. To get networking working, you'll need to set up the bridge manually:
 
  +
  +
To get networking working for Windows, you'll need to set up the bridge manually:
   
 
brctl addbr xenbr0
 
brctl addbr xenbr0
Line 17: Line 19:
   
 
After scan and configuring it better to reboot to change status (plugged) to actual state of interface.
 
After scan and configuring it better to reboot to change status (plugged) to actual state of interface.
  +
[[Category:XAPI]]
  +
[[Category:Users]]
  +
[[Category:Networking]]

Latest revision as of 12:54, 28 March 2014

The script for installing a Linux VM on Kronos provides for basic networking support.

To get networking working for Windows, you'll need to set up the bridge manually:

brctl addbr xenbr0
brctl addif xenbr0 eth0

You may need to move the IP address to the bridge rather than the physical interface. Having done this, try a pif-scan:

xe pif-scan


This should create the network for your interface.

After that you can (not sure if this is necessary) configure management interface. Because we already do have configured interface, it just saying XCP real situation around.

xe pif-reconfigure-ip pif-uuid=... mode=static IP=... mask=... gateway=... DNS=...
xe host-management-reconfigure pif-uuid=...

After scan and configuring it better to reboot to change status (plugged) to actual state of interface.