Difference between revisions of "Phoenix"
From CSLabsWiki
(Created page with "{{services |contact_person = CoreMaintainers |last_update = ''Spring 2015'' |services = Various |category = Machines |handoff = no }} {{Machine | screenshot = | maintain...") |
m |
||
Line 18: | Line 18: | ||
Phoenix is our secondary VM host. It rose from the ashes of [[europa]] and [[xen2]] It is currently in development. |
Phoenix is our secondary VM host. It rose from the ashes of [[europa]] and [[xen2]] It is currently in development. |
||
+ | |||
+ | == Setup == |
||
+ | Generally, we followed the [https://wiki.debian.org/KVM instructions] on the debian wiki. |
||
+ | |||
+ | === Things to install === |
||
+ | apt-get install htop vim sudo qemu-kvm libvirt-bin virtinst |
||
+ | |||
+ | ===Network Bridge Setup=== |
||
+ | In order for the VMs to be on our LAN, a bridge must be set up as follows: |
||
+ | |||
+ | In /etc/network/interfaces: |
||
+ | |||
+ | |||
+ | |||
+ | Manual set up: |
||
+ | |||
+ | 1) Create new bridge iterface "brctl addbr <bridge_name>" |
||
+ | |||
+ | 2) Add existing interface to bridge "brctl addif <bridge_name> <iterface_name>" |
||
+ | |||
+ | 3) Bring bridge up "ifconfig <bridge_name> up" |
||
+ | |||
+ | |||
+ | Bridging interfaces will cause the interfaces used to not have an ip address even if they are up. The bridge interface will contain an ip address. |
Revision as of 00:51, 7 June 2015
Phoenix | |
Contact Person: | CoreMaintainers |
Last Update: | Spring 2015 |
Services: | Various |
Hostname: | Unknown? |
Operating system: | Debian 8.0 Jessie |
CPU: | 2x Intel Xeon E5410 @ 2.33GHz |
RAM: | 16 GB DDR2 |
Phoenix is our secondary VM host. It rose from the ashes of europa and xen2 It is currently in development.
Setup
Generally, we followed the instructions on the debian wiki.
Things to install
apt-get install htop vim sudo qemu-kvm libvirt-bin virtinst
Network Bridge Setup
In order for the VMs to be on our LAN, a bridge must be set up as follows:
In /etc/network/interfaces:
Manual set up:
1) Create new bridge iterface "brctl addbr <bridge_name>"
2) Add existing interface to bridge "brctl addif <bridge_name> <iterface_name>"
3) Bring bridge up "ifconfig <bridge_name> up"
Bridging interfaces will cause the interfaces used to not have an ip address even if they are up. The bridge interface will contain an ip address.