additional interfaces in XEN environment


 
Thread Tools Search this Thread
Operating Systems Linux additional interfaces in XEN environment
# 1  
Old 03-03-2008
additional interfaces in XEN environment

Hello!

I have installed a XEN domain0 system (with a hypervisor), and upon that a paravirtualized SLES10 server.
The default eth0 network bridge is working by default.
My question is, how do I add additional network interfaces in this environment? I suppose I have to configure the network bridge?

//sap4ever
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

Help using XEN in CentOS 5.9

Hey guys, I've been straddling with this issue for quite some time now and I'm getting absolutely nowhere with it. It took me a long time to get XEN up and running on my server. We only use SSH to manipulate our servers, but we finally got it up and running. Now I'm at the point of actually... (1 Reply)
Discussion started by: mccabec123
1 Replies

2. Solaris

Interfaces and Virtual-interfaces queries

Hi Al, In course of understanding networking in Solaris, I have these doubts on Interfaces. Please clarify me. I have done fair research in this site and others but could not be clarified. 1. In the "ifconfig -a" command, I see many interfaces and their configurations. But I see many... (1 Reply)
Discussion started by: satish51392111
1 Replies

3. SuSE

XEN and SLES11

Good morning, Server:HP ProLiant DL165 G7 diskless with Disc on Storage OS:SLES11 SP1 and xen-3.3.1_18546_12-3.1 iSCSI:INTEL Gigabit ET Dual Port Server Adapter 825768 When I start SLES11 with Xen in boot-loader menu, then the boot will stop because linux could'nt find the iscsi interface... (0 Replies)
Discussion started by: hiddenshadow
0 Replies

4. Red Hat

XEN on RHEL 6

Hi guys. I read that RHEL will not support XEN in version 6 and it will support KVM. Does this mean we can't install XEN from RHEL repositories? Should we install it from source code? (8 Replies)
Discussion started by: majid.merkava
8 Replies

5. Debian

xen cannot start

helo can anynody help me? i'm using xen in debian lenny 2.6.26 if i'm booting in the xen kernel the xend can't start like this Starting XEN control daemon: xend suspend: event channel 21 SMP alternatives: switching to UP code " And then stop. any idea?..thanks before (0 Replies)
Discussion started by: demhyt
0 Replies

6. UNIX for Advanced & Expert Users

xen

was looking for some help /tutorials on xen ..im a beginner on virtualisation ..so any help would be greatly appreciated ...p.s. whats the basic difference between para and full virtualisation (2 Replies)
Discussion started by: tarunicon
2 Replies

7. Virtualization and Cloud Computing

Opensolaris and Xen

Quick question- When installing a VM with xen on Opensolaris to get paravirtualizion you need an install tree and I can't seem to use an .iso. What what is exactly an intsall tree in this contex? (0 Replies)
Discussion started by: Lespaul20
0 Replies

8. Virtualization and Cloud Computing

[Xen] vm's and filesystem

How do I know the relationship between vm name and its disk on the filesystem? If I have a vm called "test", how do I know what (and where) is its disk on the filesystem? I'm trying to extract from "xm" command but I really don't find the right option... :( (1 Reply)
Discussion started by: untamed
1 Replies

9. Red Hat

xen help required

Hi, I would like ask question about preparing xen templates. Here is the detail below of hardware. I have a server having two 80 GB hard-drive, currently no operating system on it, having 2GB of RAM, pls could you tell me what partition scheme i will follow so i will use those partition... (0 Replies)
Discussion started by: learnbash
0 Replies
Login or Register to Ask a Question
XEN(4)							   BSD Kernel Interfaces Manual 						    XEN(4)

NAME
xen -- Xen Hypervisor Guest (DomU) Support SYNOPSIS
To compile para-virtualized (PV) Xen guest support into an i386 kernel, place the following lines in your kernel configuration file: options PAE options XEN nooptions NATIVE To compile hardware-assisted virtualization (HVM) Xen guest support with para-virtualized drivers into an amd64 kernel, place the following lines in your kernel configuration file: options XENHVM device xenpci DESCRIPTION
The Xen Hypervisor allows multiple virtual machines to be run on a single computer system. When first released, Xen required that i386 ker- nels be compiled "para-virtualized" as the x86 instruction set was not fully virtualizable. Primarily, para-virtualization modifies the vir- tual memory system to use hypervisor calls (hypercalls) rather than direct hardware instructions to modify the TLB, although para-virtualized device drivers were also required to access resources such as virtual network interfaces and disk devices. With later instruction set extensions from AMD and Intel to support fully virtualizable instructions, unmodified virtual memory systems can also be supported; this is referred to as hardware-assisted virtualization (HVM). HVM configurations may either rely on transparently emu- lated hardware peripherals, or para-virtualized drivers, which are aware of virtualization, and hence able to optimize certain behaviors to improve performance or semantics. FreeBSD supports a fully para-virtualized (PV) kernel on the i386 architecture using options XEN and nooptions NATIVE; currently, this requires use of a PAE kernel, enabled via options PAE. FreeBSD supports hardware-assisted virtualization (HVM) on both the i386 and amd64 kernels; however, PV device drivers with an HVM kernel are only supported on the amd64 architecture, and require options XENHVM and device xenpci. Para-virtualized device drivers are required in order to support certain functionality, such as processing management requests, returning idle physical memory pages to the hypervisor, etc. Xen DomU device drivers Xen para-virtualized drivers are automatically added to the kernel if a PV kernel is compiled using options XEN; for HVM environments, options XENHVM and device xenpci are required. The follow drivers are supported: balloon Allow physical memory pages to be returned to the hypervisor as a result of manual tuning or automatic policy. blkback Exports local block devices or files to other Xen domains where they can then be imported via blkfront. blkfront Import block devices from other Xen domains as local block devices, to be used for file systems, swap, etc. console Export the low-level system console via the Xen console service. control Process management operations from Domain 0, including power off, reboot, suspend, crash, and halt requests. evtchn Expose Xen events via the /dev/xen/evtchn special device. netback Export local network interfaces to other Xen domains where they can be imported via netfront. netfront Import network interfaces from other Xen domains as local network interfaces, which may be used for IPv4, IPv6, etc. pcifront Allow physical PCI devices to be passed through into a PV domain. xenpci Represents the Xen PCI device, an emulated PCI device that is exposed to HVM domains. This device allows detection of the Xen hypervisor, and provides interrupt and shared memory services required to interact with the hypervisor. Performance considerations In general, PV drivers will perform better than emulated hardware, and are the recommended configuration for HVM installations. Using a hypervisor introduces a second layer of scheduling that may limit the effectiveness of certain FreeBSD scheduling optimisations. Among these is adaptive locking, which is no longer able to determine whether a thread holding a lock is in execution. It is recommended that adaptive locking be disabled when using Xen: options NO_ADAPTIVE_MUTEXES options NO_ADAPTIVE_RWLOCKS options NO_ADAPTIVE_SX SEE ALSO
pae(4) HISTORY
Support for xen first appeared in FreeBSD 8.1. AUTHORS
FreeBSD support for Xen was first added by Kip Macy <kmacy@FreeBSD.org> and Doug Rabson <dfr@FreeBSD.org>. Further refinements were made by Justin Gibbs <gibbs@FreeBSD.org>, Adrian Chadd <adrian@FreeBSD.org>, and Colin Percival <cperciva@FreeBSD.org>. This manual page was written by Robert Watson <rwatson@FreeBSD.org>. BUGS
FreeBSD is only able to run as a Xen guest (DomU) and not as a Xen host (Dom0). A fully para-virtualized (PV) kernel is only supported on i386, and not amd64. Para-virtualized drivers under hardware-assisted virtualization (HVM) kernel are only supported on amd64, not i386. As of this release, Xen PV DomU support is not heavily tested; instability has been reported during VM migration of PV kernels. Certain PV driver features, such as the balloon driver, are under-exercised. BSD
December 17, 2010 BSD