All of lore.kernel.org
 help / color / mirror / Atom feed
* Accessing the VNC using HVM stub domain - xen 3.3.0
@ 2008-09-11 12:47 Marco Sinhoreli
  2008-09-11 16:00 ` Samuel Thibault
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Sinhoreli @ 2008-09-11 12:47 UTC (permalink / raw)
  To: xen-devel mailing list

Hello all,

I'm writing a documentation about the news features of xen 3.3.0. The
VNC is available configured to access by domain 0 but  I can't access
configuring it to work into -dm virtual machine.
Below my conffiles:

# /etc/xen/hvmachine
kernel = "/usr/lib/xen/boot/hvmloader"
builder='hvm'
memory = 1024
name = "hvmachine"
vcpus=2
vif = [ 'type=ioemu, bridge=eth0' ]
device_model = '/usr/lib/xen/bin/stubdom-dm'
boot="cd"
sdl=0
opengl=0
vnc=1
vnclisten="172.30.206.1"
stdvga=0

# /etc/xen/hvmachine-dm
kernel = "/usr/lib/xen/boot/ioemu-stubdom.gz"
vif = [ 'ip=172.30.206.1', 'bridge=eth0,mac=00:16:3e:21:a2:94' ]
disk = [ 'file:/home/iso/debian-LennyBeta2-amd64-CD-1.iso,hdc:cdrom,r','phy:/dev/empirevg/pvmachine,hda,w']

Any idea?

Regards,

-- 
Marco Sinhoreli

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 12:47 Accessing the VNC using HVM stub domain - xen 3.3.0 Marco Sinhoreli
@ 2008-09-11 16:00 ` Samuel Thibault
  2008-09-11 17:45   ` Marco Sinhoreli
  0 siblings, 1 reply; 8+ messages in thread
From: Samuel Thibault @ 2008-09-11 16:00 UTC (permalink / raw)
  To: Marco Sinhoreli; +Cc: xen-devel mailing list

Hello,

Marco Sinhoreli, le Thu 11 Sep 2008 09:47:44 -0300, a écrit :
> I'm writing a documentation about the news features of xen 3.3.0. The
> VNC is available configured to access by domain 0 but  I can't access
> configuring it to work into -dm virtual machine.

Does your network configuration permit to expose IP 172.30.206.1 on a PV
vif interface?
(apart from that your configuration files seem good)

Samuel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 16:00 ` Samuel Thibault
@ 2008-09-11 17:45   ` Marco Sinhoreli
  2008-09-11 18:24     ` Samuel Thibault
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Sinhoreli @ 2008-09-11 17:45 UTC (permalink / raw)
  To: Samuel Thibault, Marco Sinhoreli, xen-devel mailing list

[-- Attachment #1: Type: text/plain, Size: 683 bytes --]

Hi Samuel,

I believed that this IP was only to internal communication between the
two virtual machines. I was mistaked.  Thanks again!

On Thu, Sep 11, 2008 at 1:00 PM, Samuel Thibault
<samuel.thibault@ens-lyon.org> wrote:
> Hello,
>
> Marco Sinhoreli, le Thu 11 Sep 2008 09:47:44 -0300, a écrit :
>> I'm writing a documentation about the news features of xen 3.3.0. The
>> VNC is available configured to access by domain 0 but  I can't access
>> configuring it to work into -dm virtual machine.
>
> Does your network configuration permit to expose IP 172.30.206.1 on a PV
> vif interface?
> (apart from that your configuration files seem good)
>
> Samuel
>



-- 
Marco Sinhoreli

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 17:45   ` Marco Sinhoreli
@ 2008-09-11 18:24     ` Samuel Thibault
  2008-09-11 19:37       ` Marco Sinhoreli
  0 siblings, 1 reply; 8+ messages in thread
From: Samuel Thibault @ 2008-09-11 18:24 UTC (permalink / raw)
  To: Marco Sinhoreli; +Cc: xen-devel mailing list

Marco Sinhoreli, le Thu 11 Sep 2008 14:45:49 -0300, a écrit :
> I believed that this IP was only to internal communication between the
> two virtual machines.

It is, but you still need to make sure to configure the network for that
to happen :)

Samuel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 18:24     ` Samuel Thibault
@ 2008-09-11 19:37       ` Marco Sinhoreli
  2008-09-11 21:36         ` Samuel Thibault
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Sinhoreli @ 2008-09-11 19:37 UTC (permalink / raw)
  To: Samuel Thibault, Marco Sinhoreli, xen-devel mailing list

Hi Samuel,

Thans again,. Changing the subject, I'm impressed with the stub domain
 performance! I did some benchmarks using bonnie++ and netperf and
it's better than pure fullvirt machine.
* netperf:
stub-hvm: 25.99 Kbits/sec
hvm: 15.23 Kbits/sec

In bonnie++ benchmark, the item "write block" is impressive:
....................Per char........Block........Rewrite
stub-hvm .....20898..........41857.......21045
hvm .............19046..........17462.......19331

These values are in K/sec.

Regards,

-- 
Marco Sinhoreli

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 19:37       ` Marco Sinhoreli
@ 2008-09-11 21:36         ` Samuel Thibault
  2008-09-11 23:32           ` Marco Sinhoreli
  0 siblings, 1 reply; 8+ messages in thread
From: Samuel Thibault @ 2008-09-11 21:36 UTC (permalink / raw)
  To: Marco Sinhoreli; +Cc: xen-devel mailing list

Marco Sinhoreli, le Thu 11 Sep 2008 16:37:41 -0300, a écrit :
> Thans again,. Changing the subject, I'm impressed with the stub domain
>  performance! I did some benchmarks using bonnie++ and netperf and
> it's better than pure fullvirt machine.
> * netperf:
> stub-hvm: 25.99 Kbits/sec
> hvm: 15.23 Kbits/sec

That's what I measured too indeed.

> In bonnie++ benchmark, the item "write block" is impressive:
> ....................Per char........Block........Rewrite
> stub-hvm .....20898..........41857.......21045
> hvm .............19046..........17462.......19331

Is that disk performance?

Samuel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 21:36         ` Samuel Thibault
@ 2008-09-11 23:32           ` Marco Sinhoreli
  2008-09-11 23:40             ` Samuel Thibault
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Sinhoreli @ 2008-09-11 23:32 UTC (permalink / raw)
  To: Samuel Thibault, Marco Sinhoreli, xen-devel mailing list

[-- Attachment #1: Type: text/plain, Size: 732 bytes --]

> Marco Sinhoreli, le Thu 11 Sep 2008 16:37:41 -0300, a écrit :
>> Thans again,. Changing the subject, I'm impressed with the stub domain
>>  performance! I did some benchmarks using bonnie++ and netperf and
>> it's better than pure fullvirt machine.
>> * netperf:
>> stub-hvm: 25.99 Kbits/sec
>> hvm: 15.23 Kbits/sec
>
> That's what I measured too indeed.
>
>> In bonnie++ benchmark, the item "write block" is impressive:
>> ....................Per char........Block........Rewrite
>> stub-hvm .....20898..........41857.......21045
>> hvm .............19046..........17462.......19331
>
> Is that disk performance?
Yes, I´m using sata disks in this bench. I have servers with SAS but
this is in production.


-- 
Marco Sinhoreli

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Accessing the VNC using HVM stub domain - xen 3.3.0
  2008-09-11 23:32           ` Marco Sinhoreli
@ 2008-09-11 23:40             ` Samuel Thibault
  0 siblings, 0 replies; 8+ messages in thread
From: Samuel Thibault @ 2008-09-11 23:40 UTC (permalink / raw)
  To: Marco Sinhoreli; +Cc: xen-devel mailing list

Marco Sinhoreli, le Thu 11 Sep 2008 20:32:31 -0300, a écrit :
> >> In bonnie++ benchmark, the item "write block" is impressive:
> >> ....................Per char........Block........Rewrite
> >> stub-hvm .....20898..........41857.......21045
> >> hvm .............19046..........17462.......19331
> >
> > Is that disk performance?
> Yes, I´m using sata disks in this bench. I have servers with SAS but
> this is in production.

Ok. In my tests I was getting ~60MB/s in both case, the improvement was
rather of the order of just 10% (just getting a bit closer to native).

Samuel

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-09-11 23:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-11 12:47 Accessing the VNC using HVM stub domain - xen 3.3.0 Marco Sinhoreli
2008-09-11 16:00 ` Samuel Thibault
2008-09-11 17:45   ` Marco Sinhoreli
2008-09-11 18:24     ` Samuel Thibault
2008-09-11 19:37       ` Marco Sinhoreli
2008-09-11 21:36         ` Samuel Thibault
2008-09-11 23:32           ` Marco Sinhoreli
2008-09-11 23:40             ` Samuel Thibault

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.