Re: [FreeBSD 8.2 amd64 XENHVM] DomU terrible network performance trought NAT

2011-05-12 Thread Guillaume Seigneuret
I think you should try totally disable the window sizing both parts to
isolate it doesn't come from here :
On your FreeBSD VM : sysctl net.inet.tcp.rfc1323=0
On your Linux box : sysctl net.ipv4.tcp_window_scaling=0

Then if the rate is hugely better, try some settings to increase the
compatibility.
You can also try an *iperf *test with TCP and UDP packets to see if the
behavior is generalized, and see what latency you have both part of the
network.

Cordialement,
*Guillaume Seigneuret*



*Network and System Security Architect
 Mobile :  +33.6.15.37.35.67
 Web :  http://www.omegacube.fr
 Address :*
Hôtel Technologique Marseille Innovation - BP 100
45 rue Frederic Joliot Curie
Technopôle de Château Gombert
13382 Marseille Cedex 13



2011/5/12 Michael MacLeod 

> Try -rxcsum as well. I have both disabled on my domU.
>
> On Thu, May 12, 2011 at 12:53 PM, laurent.cli...@gmail.com <
> laurent.cli...@gmail.com> wrote:
>
> > Le 12/05/2011 17:02, Tobias P. Santos a écrit :
> > > Try this:
> > >
> > > ifconfig xn1 -txcsum
> > >
> > > Best regards,
> > > Tobias.
> > Hello Tobias,
> >
> > Unfortunately ifconfig xn1 -txcsum didn't give me lot of result.
> > Doing this my network perf through NAT is about 7KiB/s (that is better
> > than before, but still unworkable).
> >
> > Thanks for the idea, maybe we are not that far away from the solution.
> >
> > >
> > >
> > > Laurent Cligny wrote:
> > >> Hello all,
> > >>
> > >> I want to setup a FreeBSD DomU VM as a network NAT gateway in order to
> > >> provide Internet access to other FreeBSD and Linux DomU VMs.
> > >> My Dom0 is Xen Cloud Platform 1.0 on a Dell Poweredge 210 with 8
> cores,
> > >> 16GiB RAM and one NIC.
> > >>
> > >> All FreeBSD VM are 8.2 amd64 with XENHVM kernel anf the Linux VM is a
> > >> Paravirtualized Debian amd64.
> > >>
> > >> The NAT gateway is a two-NIC box, with one (xn0) configured with a
> > >> public Internet address and the other (xn1) configured with a class A
> > >> private address (10.0.0.254).
> > >> The Internet traffic is very good from my FreeBSD NAT gateway to the
> > >> Internet (~ 50MiB/s) and also between other VMs on the private network
> > >> (~ 70MiB/s trough scp) after applying the patch here
> > >> (http://www.mail-archive.com/freebsd-xen@freebsd.org/msg00855.html)
> > >> fixing the "too many frags" problem.
> > >>
> > >> Here is a schema of my setup with the observed net speed on it:
> > >>
> > >> -- --- --
> > >> |Internet|---xn0---|FBSD DomU NAT|---xn1---|FBSD and Linux DomUs|
> > >> -- --- --
> > >>   <--->   <--->
> > >>50MiB/s 70MiB/s
> > >>
> > >>   <--->
> > >>0KiB/s  > >>
> > >> [...]
> > > ___
> > > freebsd-xen@freebsd.org mailing list
> > > http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> > > To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
> >
> > ___
> > freebsd-xen@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> > To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
> >
> ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
>
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Re: [FreeBSD 8.2 amd64 XENHVM] DomU terrible network performance trought NAT

2011-05-12 Thread Guillaume Seigneuret
Maybe you should have a look on the tcp window size values.
I had such a behavior with two gateways who was not playing the same way
with the TCP window size which made my network damn slow.
If you have a linux gateway in front of your FreeBSD VM, it should be this.

Command
Description
sysctl net.inet.tcp.rfc1323=1 Activate window scaling and timestamp options
according to RFC 1323.sysctl ipc.maxsockbuf=*[sbmax]* Set maximum size of
TCP window.sysctl net.inet.tcp.recvspace=*[wstd]* Set default size of TCP
receive window.sysctl net.inet.tcp.sendspace=*[wstd]* Set default size of
TCP transmit window.sysctl kern.ipc.nmbclusters View maximum number of mbuf
clusters. Used for storage of data packets to/from the network interface.
Can only be set att boot time - see above. sysctl net.inet.tcp.liondmask=7Used
to enable the "netlion" patch above.

Cordialement,
*Guillaume Seigneuret*



*Network and System Security Architect*
 *Web* :  http://www.omegacube.fr
 *Address* :
Hôtel Technologique Marseille Innovation - BP 100
45 rue Frederic Joliot Curie
Technopôle de Château Gombert
13382 Marseille Cedex 13



2011/5/12 Laurent Cligny 

> Hello all,
>
> I want to setup a FreeBSD DomU VM as a network NAT gateway in order to
> provide Internet access to other FreeBSD and Linux DomU VMs.
> My Dom0 is Xen Cloud Platform 1.0 on a Dell Poweredge 210 with 8 cores,
> 16GiB RAM and one NIC.
>
> All FreeBSD VM are 8.2 amd64 with XENHVM kernel anf the Linux VM is a
> Paravirtualized Debian amd64.
>
> The NAT gateway is a two-NIC box, with one (xn0) configured with a
> public Internet address and the other (xn1) configured with a class A
> private address (10.0.0.254).
> The Internet traffic is very good from my FreeBSD NAT gateway to the
> Internet (~ 50MiB/s) and also between other VMs on the private network
> (~ 70MiB/s trough scp) after applying the patch here
> (http://www.mail-archive.com/freebsd-xen@freebsd.org/msg00855.html)
> fixing the "too many frags" problem.
>
> Here is a schema of my setup with the observed net speed on it:
>
> -- --- --
> |Internet|---xn0---|FBSD DomU NAT|---xn1---|FBSD and Linux DomUs|
> -- --- --
>  <--->   <--->
>   50MiB/s 70MiB/s
>
>  <--->
>   0KiB/s 
> I tried doing NAT on the FBSD gateway with PF and also with NATd after
> shutting down PF and unloaded the kernel modules pf.ko and pflog.ko, but
> I have the same perf problems with both solutions. Also I tried
> disabling net.inet.tcp.tso and did ifconfig -tso on all NICs on NAT
> gateway and other VMs without change.
>
> I don't see anything on the error console or in /var/log/message.
>
> When i'm trying going though NAT with a Linux paravirt DomU, the network
> perf is slightly better but don't go over 5KiB/s.
>
> Finally I put my Linux paravirt DomU VM as a NAT gateway in place of the
> FreeBSD one, and the network perf is now normal through it (50MiB/s)
> from the FreeBSD DomU VMs.
>
> As I'm very happy with FreeBSD for my environment I'd like to keep as
> much as this lovely OS for all my needs, so if anyone have an idea where
> the problem can lies, and what to test next to have a clue of what's
> happening, I will be very thankfull.
>
> Thanks in advance.
>
> --
> /Regards,/
>
> *Laurent Cligny
> /Founder/*
> 02 97 37 71 14
> 06 25 40 86 48
> laurent.cli...@steadinet.fr
>
> Steadinet <http://www.steadinet.fr>
>
>
> ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
>
>
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Re: FreeBSD on EC2 maybe real now ?

2010-09-16 Thread Guillaume Seigneuret
something :p

Cordialement,
*Guillaume Seigneuret*



*Network and System Security Architect
Web :  http://www.omegacube.fr
Address :*
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13



2010/9/16 Zladivliba Voskuy 

>
> Hey guys !
>
> It seems there's a little hope to make progress with FreeBSD on EC2, as
> Amazon posted this announcement :
> http://aws.typepad.com/aws/2010/07/use-your-own-kernel-with-amazon-ec2.html
>
> I couldn't read the documentation about how to do this but they say "You
> could (if you are sufficiently adept) use this facility to launch an
> operating system that we don't support directly (e.g. FreeBSD). If you
> manage to do this, please feel free to let me know".
>
> Does anyone knows how to do this actually ? Or is this really possible ?
>
> I've been waiting for an FreeBSD ec2 image for years now ! I know there's a
> lot of persons waiting also around so if anyone knows how to make this
> happen, please post somehting 
>
> Thanks !
> Z.
>
>
>
>  ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
>
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


RE: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

2010-06-20 Thread Guillaume Seigneuret
Could you tell us what did you do to test the stability ?
Softs running on it, who many time and with who many users using it ?

Thanks by advance.

Cordialement,

Guillaume Seigneuret



Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13


-Message d'origine-
De : Tjado Mäcke [mailto:tjado.ml.freebsd-...@maecke.net] 
Envoyé : dimanche 20 juin 2010 17:57
À : Guillaume Seigneuret
Cc : 'Pandu Poluan'; freebsd-xen@freebsd.org
Objet : Re: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

I mean stable in a general way not for FreeBSD (didn't tried out it in
PV yet).

tjado

Am 20.06.2010 17:54, schrieb Guillaume Seigneuret:
> I did try with Xen 4.0.0.
> But more stable doesn't meens "suitable for production use" ...
> I think the FreeBSD team has to work on its kernel to make it stable under 
> paravirtualized environment.
> It's not really a question of Xen kernel version.
>
> Cordialement,
>
> Guillaume Seigneuret
>
>
>
> Network and System Security Architect
> Web : http://www.omegacube.fr
> Address :
> Hôtel Technologique - BP 100
> Technopôle de Château Gombert
> 13382 Marseille Cedex 13
>
> -Message d'origine-
> De : Tjado Mäcke [mailto:tjado.ml.freebsd-...@maecke.net] 
> Envoyé : dimanche 20 juin 2010 16:28
> À : Guillaume Seigneuret
> Cc : Pandu Poluan; freebsd-xen@freebsd.org
> Objet : Re: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host
>
> Hi,
>
> which version did you use of 4.0? For me, 4.0.1-rc3-pre runs more stable
> than 4.0.0.
> Do you have some more information about the FreeBSD pv? Maybe i will try
> this howto: http://forums.freebsd.org/showthread.php?t=10268
>
> tjado
>
> Am 20.06.2010 12:00, schrieb Guillaume Seigneuret:
>   
>> You're welcome, yes I guess it's safer to keep them in standalone servers
>> for the moment.
>> For information I did try :
>>
>> FreeBSD 8 i386 paravirtualized on :
>>
>>- Xen 3.4.2 with a 2.6.32 Linux kernel
>>- Xen 4.0 with a 2.6.32.12 Linux kernel
>>
>> FreeBSD 9 beta i386 paravirtualized on :
>>
>>-
>>- Xen 3.4.2 with a 2.6.32 Linux kernel
>>- Xen 4.0 with a 2.6.32.12 Linux kerne
>>
>>
>> Configuration with mono CPU and 512/1024 Mo RAM, Disks on Dom0 LVM
>> partitions.
>> Plateforms : Dell T610, Dell R200, Dell R210.
>>
>> Cordialement,
>>
>>   
>> 
>
>   


___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


RE: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

2010-06-20 Thread Guillaume Seigneuret
I did try with Xen 4.0.0.
But more stable doesn't meens "suitable for production use" ...
I think the FreeBSD team has to work on its kernel to make it stable under 
paravirtualized environment.
It's not really a question of Xen kernel version.

Cordialement,

Guillaume Seigneuret



Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13

-Message d'origine-
De : Tjado Mäcke [mailto:tjado.ml.freebsd-...@maecke.net] 
Envoyé : dimanche 20 juin 2010 16:28
À : Guillaume Seigneuret
Cc : Pandu Poluan; freebsd-xen@freebsd.org
Objet : Re: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

Hi,

which version did you use of 4.0? For me, 4.0.1-rc3-pre runs more stable
than 4.0.0.
Do you have some more information about the FreeBSD pv? Maybe i will try
this howto: http://forums.freebsd.org/showthread.php?t=10268

tjado

Am 20.06.2010 12:00, schrieb Guillaume Seigneuret:
> You're welcome, yes I guess it's safer to keep them in standalone servers
> for the moment.
> For information I did try :
>
> FreeBSD 8 i386 paravirtualized on :
>
>- Xen 3.4.2 with a 2.6.32 Linux kernel
>- Xen 4.0 with a 2.6.32.12 Linux kernel
>
> FreeBSD 9 beta i386 paravirtualized on :
>
>-
>- Xen 3.4.2 with a 2.6.32 Linux kernel
>- Xen 4.0 with a 2.6.32.12 Linux kerne
>
>
> Configuration with mono CPU and 512/1024 Mo RAM, Disks on Dom0 LVM
> partitions.
> Plateforms : Dell T610, Dell R200, Dell R210.
>
> Cordialement,
>
>   


___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Re: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

2010-06-20 Thread Guillaume Seigneuret
You're welcome, yes I guess it's safer to keep them in standalone servers
for the moment.
For information I did try :

FreeBSD 8 i386 paravirtualized on :

   - Xen 3.4.2 with a 2.6.32 Linux kernel
   - Xen 4.0 with a 2.6.32.12 Linux kernel

FreeBSD 9 beta i386 paravirtualized on :

   -
   - Xen 3.4.2 with a 2.6.32 Linux kernel
   - Xen 4.0 with a 2.6.32.12 Linux kerne


Configuration with mono CPU and 512/1024 Mo RAM, Disks on Dom0 LVM
partitions.
Plateforms : Dell T610, Dell R200, Dell R210.

Cordialement,

ω³ Omega Cube
Guillaume S.
Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13


2010/6/20 Pandu Poluan 

> Ahh... Thanks for the answer. I guess we will keep the
> performance-bound FreeBSD servers standalone then.
>
> Rgds,
>
> On 2010-06-19, Guillaume Seigneuret  wrote:
> > As far as I could try, FreeBSD 8 paravitualized is not suitable for
> > production use.
> > It crashes under stress.
> >
> > Cordialement,
> >
> > Guillaume Seigneuret
> >
> >
> >
> > Network and System Security Architect
> > Web : http://www.omegacube.fr
> > Address :
> > Hôtel Technologique - BP 100
> > Technopôle de Château Gombert
> > 13382 Marseille Cedex 13
> >
> >
> > -Message d'origine-
> > De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org]
> De
> > la part de Pandu Poluan
> > Envoyé : samedi 19 juin 2010 07:53
> > À : freebsd-xen@freebsd.org
> > Objet : Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host
> >
> > Hello all,
> >
> > I'm just trying to confirm: Is it true that FreeBSD 8's support for
> > Paravirtualized Guest on XenServer still experimental/beta?
> >
> > Because we need to make sure that FreeBSD-based *production* servers
> > can be paravirtualized on the xenserver hosts -- performance reasons.
> >
> > That said, I've tried installing FreeBSD 8 in HVM mode, seems to work
> > okay -- might be suitable for the 1 or 2 servers that does not need
> > highest performance.
> >
> > PS: I'm not really familiar with FreeBSD, though I am familiar with
> > Linux. Some hand-holding will be appreciated :-)
> >
> > Rgds,
> > --
> > Pandu E Poluan - IT Optimizer
> > My website: http://pandu.poluan.info/
> > ___
> > freebsd-xen@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> > To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
> >
> >
>
> --
> Sent from my mobile device
>
> --
> Pandu E Poluan - IT Optimizer
> My website: http://pandu.poluan.info/
> ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
>
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


RE: Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

2010-06-19 Thread Guillaume Seigneuret
As far as I could try, FreeBSD 8 paravitualized is not suitable for production 
use.
It crashes under stress.

Cordialement,

Guillaume Seigneuret



Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13


-Message d'origine-
De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org] De la 
part de Pandu Poluan
Envoyé : samedi 19 juin 2010 07:53
À : freebsd-xen@freebsd.org
Objet : Paravirtualized FreeBSD 8 Guest on Citrix XenServer 5.5/5.6 Host

Hello all,

I'm just trying to confirm: Is it true that FreeBSD 8's support for
Paravirtualized Guest on XenServer still experimental/beta?

Because we need to make sure that FreeBSD-based *production* servers
can be paravirtualized on the xenserver hosts -- performance reasons.

That said, I've tried installing FreeBSD 8 in HVM mode, seems to work
okay -- might be suitable for the 1 or 2 servers that does not need
highest performance.

PS: I'm not really familiar with FreeBSD, though I am familiar with
Linux. Some hand-holding will be appreciated :-)

Rgds,
--
Pandu E Poluan - IT Optimizer
My website: http://pandu.poluan.info/
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


RE: FreeBSD on Amazon EC2

2010-05-08 Thread Guillaume Seigneuret
HVM is hell ^^
Xen exists to avoid emulation.

Cordialement,

Guillaume Seigneuret



Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13

-Message d'origine-
De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org] De
la part de K. Macy
Envoyé : dimanche 9 mai 2010 01:19
À : Zladivliba Voskuy
Cc : freebsd-xen@freebsd.org
Objet : Re: FreeBSD on Amazon EC2

On Wed, May 5, 2010 at 12:39 AM, Zladivliba Voskuy 
wrote:
>
> Well  the question is : may  FreeBSD run under EC2... really Solaris I
 don't care.

For i386  (small instances) EC2 either needs to update to a
non-antique version of Xen or support for not using linear pagetables
needs to be restored to xen/pmap.c.

For amd64 (medium and large instances) a new xen/pmap.c would need to
be written. This isn't a great deal of work, but most users seem to be
having a great deal of success with just running HVM with PV drivers.


Cheers,
Kip
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


RE: FreeBSD on Amazon EC2

2010-05-03 Thread Guillaume Seigneuret
I agree but I think the major problem is that all the Linux distributions
are abandoning Xen because of its difficulty to maintain. (I fear especially
for Debian which is the main interesting distrib for Xen dom0)

For now the only OS who is maintaining Xen as Dom0 is NetBSD and it’s not so
great by my humble opinion.

 

So maybe it would be a good thing to look at alternatives to Xen or
patiently wait for Xen 4.0 :( 

 

Cordialement,


Guillaume Seigneuret

 

logo_625x333

 

Network and System Security Architect
Web :  <http://www.omegacube.fr> http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13

 

De : Zladivliba Voskuy [mailto:nospam...@hotmail.fr] 
Envoyé : lundi 3 mai 2010 19:54
À : g...@omegacube.fr
Cc : freebsd-xen@freebsd.org
Objet : RE: FreeBSD on Amazon EC2

 


Thanks for your interesting view on the subject. Yes I guess I too, would
really love to hear from a FreeBSD developer on this matter. It would be
great to have at least a 386 version working so some of us could put it on
ec2 and start with some feedback.

FreeBSD should really be there in my opinion !

--
My dojo & zend framework experience, the good, the bad with code samples ;-)
http://practicalphpajax.wordpress.com/




> From: g...@omegacube.fr
> To: nospam...@hotmail.fr
> CC: freebsd-xen@freebsd.org
> Subject: RE: FreeBSD on Amazon EC2
> Date: Fri, 30 Apr 2010 20:12:55 +0200
> 
> Dear Zlabivliba,
> 
> I think it's going to take a while for FreeBSD to perfectly work as a
> paravirtualized DomU.
> SMP doesn't work, there is no AMD64 kernel available, and the stability
has
> to be improved under heavy load.
> I guess the first work will be done on the stability of the virtualized OS
> and then some new feature will appear.
> Maybe a FreeBSD developer could tell us about this but I also guess this
is
> not a priority since they added FreeBSD jails.
> 
> Cordialement,
> 
> Guillaume Seigneuret
> 
> 
> 
> Network and System Security Architect
> Web : http://www.omegacube.fr
> Address :
> Hôtel Technologique - BP 100
> Technopôle de Château Gombert
> 13382 Marseille Cedex 13
> 
> -Message d'origine-
> De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org]
De
> la part de Zladivliba Voskuy
> Envoyé : jeudi 29 avril 2010 12:38
> À : freebsd-xen@freebsd.org
> Objet : RE: FreeBSD on Amazon EC2
> 
> 
> Ok, that's a good news. In your opinion what exactly is the work remaining
> to be done for a full implementation, and how long is this going to take ?
> 
> --
> My dojo & zend framework experience, the good, the bad with code samples
;-)
> 
> http://practicalphpajax.wordpress.com/
> 
> 
> 
> 
> > From: g...@omegacube.fr
> > To: freebsd-xen@freebsd.org
> > Date: Wed, 28 Apr 2010 17:59:50 +0200
> > Subject: RE: FreeBSD on Amazon EC2
> > 
> > For the moment FreeBSD is not stable as a paravirtualized DomU. 
> > I test it for a while and it crashes under heavy load.
> > If you need to test it, I'm sure it'll work on Amazon EC2 patform but
> don't
> > expect have it as a stable production environment.
> > 
> > Cordialement,
> > 
> > Guillaume Seigneuret
> > 
> > 
> > 
> > Network and System Security Architect
> > Web : http://www.omegacube.fr
> > Address :
> > Hôtel Technologique - BP 100
> > Technopôle de Château Gombert
> > 13382 Marseille Cedex 13
> > 
> > -Message d'origine-
> > De : owner-freebsd-...@freebsd.org
[mailto:owner-freebsd-...@freebsd.org]
> De
> > la part de Zladivliba Voskuy
> > Envoyé : mercredi 28 avril 2010 17:41
> > À : freebsd-xen@freebsd.org
> > Objet : FreeBSD on Amazon EC2
> > 
> > 
> > Hi everyone !
> > 
> > I'm trying to find a solution to run FreeBSD on the Amazon EC2 platform.
> > Anyone succeded at building an image that could actually run ?
> > 
> > There's a lot of interest out there about this subject and my guess is
> that
> > FreeBSD would make a great choice for cloud computing. I'd really like
to
> > see it working soon.
> > 
> > Thanks for any input !
> > 
> > --
> > My dojo & zend framework experience, the good, the bad with code samples
> ;-)
> > 
> > http://practicalphpajax.wordpress.com/
> > 
> > 
> > 
> > 
> > _
> > Hotmail : un service de messagerie gratuit, fiable et complet
> >
>
https://signup.live.com/signup.aspx?id=60969
> > ___
> &

RE: FreeBSD on Amazon EC2

2010-04-30 Thread Guillaume Seigneuret
Dear Zlabivliba,

I think it's going to take a while for FreeBSD to perfectly work as a
paravirtualized DomU.
SMP doesn't work, there is no AMD64 kernel available, and the stability has
to be improved under heavy load.
I guess the first work will be done on the stability of the virtualized OS
and then some new feature will appear.
Maybe a FreeBSD developer could tell us about this but I also guess this is
not a priority since they added FreeBSD jails.

Cordialement,

Guillaume Seigneuret



Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13

-Message d'origine-
De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org] De
la part de Zladivliba Voskuy
Envoyé : jeudi 29 avril 2010 12:38
À : freebsd-xen@freebsd.org
Objet : RE: FreeBSD on Amazon EC2


Ok, that's a good news. In your opinion what exactly is the work remaining
to be done for a full implementation, and how long is this going to take ?

--
My dojo & zend framework experience, the good, the bad with code samples ;-)

http://practicalphpajax.wordpress.com/




> From: g...@omegacube.fr
> To: freebsd-xen@freebsd.org
> Date: Wed, 28 Apr 2010 17:59:50 +0200
> Subject: RE: FreeBSD on Amazon EC2
> 
> For the moment FreeBSD is not stable as a paravirtualized DomU. 
> I test it for a while and it crashes under heavy load.
> If you need to test it, I'm sure it'll work on Amazon EC2 patform but
don't
> expect have it as a stable production environment.
> 
> Cordialement,
> 
> Guillaume Seigneuret
> 
> 
> 
> Network and System Security Architect
> Web : http://www.omegacube.fr
> Address :
> Hôtel Technologique - BP 100
> Technopôle de Château Gombert
> 13382 Marseille Cedex 13
> 
> -Message d'origine-
> De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org]
De
> la part de Zladivliba Voskuy
> Envoyé : mercredi 28 avril 2010 17:41
> À : freebsd-xen@freebsd.org
> Objet : FreeBSD on Amazon EC2
> 
> 
> Hi everyone !
> 
> I'm trying to find a solution to run FreeBSD on the Amazon EC2 platform.
> Anyone succeded at building an image that could actually run ?
> 
> There's a lot of interest out there about this subject and my guess is
that
> FreeBSD would make a great choice for cloud computing. I'd really like to
> see it working soon.
> 
> Thanks for any input !
> 
> --
> My dojo & zend framework experience, the good, the bad with code samples
;-)
> 
> http://practicalphpajax.wordpress.com/
> 
> 
> 
> 
> _
> Hotmail : un service de messagerie gratuit, fiable et complet
>
https://signup.live.com/signup.aspx?id=60969
> ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
> 
> ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
  
_
Hotmail : un service de messagerie gratuit, fiable et complet
https://signup.live.com/signup.aspx?id=60969
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


RE: FreeBSD on Amazon EC2

2010-04-28 Thread Guillaume Seigneuret
For the moment FreeBSD is not stable as a paravirtualized DomU. 
I test it for a while and it crashes under heavy load.
If you need to test it, I'm sure it'll work on Amazon EC2 patform but don't
expect have it as a stable production environment.

Cordialement,

Guillaume Seigneuret



Network and System Security Architect
Web : http://www.omegacube.fr
Address :
Hôtel Technologique - BP 100
Technopôle de Château Gombert
13382 Marseille Cedex 13

-Message d'origine-
De : owner-freebsd-...@freebsd.org [mailto:owner-freebsd-...@freebsd.org] De
la part de Zladivliba Voskuy
Envoyé : mercredi 28 avril 2010 17:41
À : freebsd-xen@freebsd.org
Objet : FreeBSD on Amazon EC2


Hi everyone !

I'm trying to find a solution to run FreeBSD on the Amazon EC2 platform.
Anyone succeded at building an image that could actually run ?

There's a lot of interest out there about this subject and my guess is that
FreeBSD would make a great choice for cloud computing. I'd really like to
see it working soon.

Thanks for any input !

--
My dojo & zend framework experience, the good, the bad with code samples ;-)

http://practicalphpajax.wordpress.com/



  
_
Hotmail : un service de messagerie gratuit, fiable et complet
https://signup.live.com/signup.aspx?id=60969
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Xen 8 & 9 DomU kernel panic with 2 or more virtual CPU

2010-03-31 Thread Guillaume Seigneuret
 # Stream Control Transmission Protocol

optionsFFS  # Berkeley Fast Filesystem

optionsSOFTUPDATES  # Enable FFS soft updates support

optionsUFS_ACL  # Support for access control lists

optionsUFS_DIRHASH  # Improve performance on big directories

optionsUFS_GJOURNAL # Enable gjournal-based UFS journaling

optionsNFSCLIENT# Network Filesystem Client

optionsNFSSERVER# Network Filesystem Server

optionsNFSLOCKD # Network Lock Manager

optionsNFS_ROOT # NFS usable as /, requires NFSCLIENT

optionsMSDOSFS  # MSDOS Filesystem

optionsCD9660   # ISO 9660 Filesystem

optionsPROCFS   # Process filesystem (requires
PSEUDOFS)

optionsPSEUDOFS # Pseudo-filesystem framework

optionsGEOM_PART_GPT# GUID Partition Tables.

optionsGEOM_LABEL   # Provides labelization

optionsCOMPAT_FREEBSD4  # Compatible with FreeBSD4

optionsCOMPAT_FREEBSD5  # Compatible with FreeBSD5

optionsCOMPAT_FREEBSD6  # Compatible with FreeBSD6

optionsCOMPAT_FREEBSD7  # Compatible with FreeBSD7

optionsKTRACE   # ktrace(1) support

optionsSTACK# stack(9) support

optionsSYSVSHM  # SYSV-style shared memory

optionsSYSVMSG  # SYSV-style message queues

optionsSYSVSEM  # SYSV-style semaphores

options_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions

optionsKBD_INSTALL_CDEV # install a CDEV entry in /dev

optionsAUDIT# Security event auditing

 

# Debugging for use in -current

optionsKDB  # Enable kernel debugger support.

optionsDDB  # Support DDB.

optionsGDB  # Support remote GDB.

optionsDEADLKRES# Enable the deadlock resolver

optionsINVARIANTS   # Enable calls of extra sanity checking

optionsINVARIANT_SUPPORT# Extra sanity checks of internal
structures, required by INVARIANTS

optionsWITNESS  # Enable checks to detect deadlocks
and cycles

optionsWITNESS_SKIPSPIN # Don't run witness on spinlocks for speed

 

optionsPAE

nooption   NATIVE

option XEN

nodevice   atpic

nodevice   isa

optionsMCLSHIFT=12

 

# To make an SMP kernel, the next two lines are needed

optionsSMP  # Symmetric MultiProcessor Kernel

device apic # I/O APIC

 

 

#deviceatkbdc   # AT keyboard controller

#deviceatkbd# AT keyboard

device psm  # PS/2 mouse

device pci

 

#devicekbdmux   # keyboard multiplexer

 

# Pseudo devices.

device loop # Network loopback

device random   # Entropy device

device ether# Ethernet support

device tun  # Packet tunnel.

device pty  # Pseudo-ttys (telnet etc)

device md   # Memory "disks"

device gif  # IPv6 and IPv4 tunneling

device faith# IPv6-to-IPv4 relaying (translation)

 

# The `bpf' device enables the Berkeley Packet Filter.

# Be aware of the administrative consequences of enabling this!

# Note that 'bpf' is required for DHCP.

device bpf  # Berkeley packet filter

 

device pf

device pfsync

device pflog

device carp

 

option IPSEC

option IPSEC_ESP

device crypto

 

options ALTQ

options ALTQ_CBQ# Class Bases Queuing (CBQ)

options ALTQ_RED# Random Early Detection (RED)

options ALTQ_RIO# RED In/Out

options ALTQ_HFSC   # Hierarchical Packet Scheduler (HFSC)

options ALTQ_PRIQ   # Priority Queuing (PRIQ)

options ALTQ_NOPCC  # Required for SMP build

 

Informations about the Xen domU :

 

Xen 3.4 amd 64 with 2.6.32-3-xen-amd64 linux kernel.

 

 

Thanks by advance.

 

Regards,


Guillaume Seigneuret

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"