Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: OpenStack: Dev

growing fixed-ip network

 

 

OpenStack dev RSS feed   Index | Next | Previous | View Threaded


ck at iphh

Aug 2, 2012, 2:58 AM

Post #1 of 8 (190 views)
Permalink
growing fixed-ip network

Hi,

I don't know how to handle the case when a tenant has used up all IPs.
We use FlatNetworking, so no Floating IPs possible.
So, when one tenant has used up all the IPs in their net, how can I assign another net
to the same tenant ? If I just assign another net, every new instance just gets an IP from both nets.
But if the first net doesn't have free IPs, I get the exception.NoMoreFixedIps()
even if the second net still has lots of IPs.

Can this be solved with quantum ?

Cheers,
Christoph
--
Christoph Kluenter E-Mail: support [at] iphh
Technik Tel: +49 (0)40 374919-10
IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
Wendenstrasse 408 AG Hamburg, HRB 76071
D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to : openstack [at] lists
Unsubscribe : https://launchpad.net/~openstack
More help : https://help.launchpad.net/ListHelp


reagul.2007 at gmail

Aug 2, 2012, 6:24 AM

Post #2 of 8 (181 views)
Permalink
Re: growing fixed-ip network [In reply to]

It should hop on to the next subnet block if available ( assuming that in
LAN its a private address scheme ) .

Ravi

On Thu, Aug 2, 2012 at 5:58 AM, Christoph Kluenter <ck [at] iphh> wrote:

> Hi,
>
> I don't know how to handle the case when a tenant has used up all IPs.
> We use FlatNetworking, so no Floating IPs possible.
> So, when one tenant has used up all the IPs in their net, how can I assign
> another net
> to the same tenant ? If I just assign another net, every new instance just
> gets an IP from both nets.
> But if the first net doesn't have free IPs, I get the
> exception.NoMoreFixedIps()
> even if the second net still has lots of IPs.
>
> Can this be solved with quantum ?
>
> Cheers,
> Christoph
> --
> Christoph Kluenter E-Mail: support [at] iphh
> Technik Tel: +49 (0)40 374919-10
> IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> Wendenstrasse 408 AG Hamburg, HRB 76071
> D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger
>
> _______________________________________________
> Mailing list: https://launchpad.net/~openstack
> Post to : openstack [at] lists
> Unsubscribe : https://launchpad.net/~openstack
> More help : https://help.launchpad.net/ListHelp
>


ck at iphh

Aug 2, 2012, 6:42 AM

Post #3 of 8 (179 views)
Permalink
Re: growing fixed-ip network [In reply to]

* Am Thu, Aug 02 2012 at 09:24:55 -0400 , schrieb Ravi Jagannathan:
> It should hop on to the next subnet block if available ( assuming that in
> LAN its a private address scheme ) .
We only use routable IPs. thats why we have some nets which can't be subnetted.
What difference does it make if its private adress space ?

christoph
>
> Ravi
>
> On Thu, Aug 2, 2012 at 5:58 AM, Christoph Kluenter <ck [at] iphh> wrote:
>
> > Hi,
> >
> > I don't know how to handle the case when a tenant has used up all IPs.
> > We use FlatNetworking, so no Floating IPs possible.
> > So, when one tenant has used up all the IPs in their net, how can I assign
> > another net
> > to the same tenant ? If I just assign another net, every new instance just
> > gets an IP from both nets.
> > But if the first net doesn't have free IPs, I get the
> > exception.NoMoreFixedIps()
> > even if the second net still has lots of IPs.
> >
> > Can this be solved with quantum ?
> >
> > Cheers,
> > Christoph
> > --
> > Christoph Kluenter E-Mail: support [at] iphh
> > Technik Tel: +49 (0)40 374919-10
> > IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> > Wendenstrasse 408 AG Hamburg, HRB 76071
> > D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger
> >
> > _______________________________________________
> > Mailing list: https://launchpad.net/~openstack
> > Post to : openstack [at] lists
> > Unsubscribe : https://launchpad.net/~openstack
> > More help : https://help.launchpad.net/ListHelp
> >

--
Christoph Kluenter E-Mail: support [at] iphh
Technik Tel: +49 (0)40 374919-10
IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
Wendenstrasse 408 AG Hamburg, HRB 76071
D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to : openstack [at] lists
Unsubscribe : https://launchpad.net/~openstack
More help : https://help.launchpad.net/ListHelp


narayan.desai at gmail

Aug 2, 2012, 7:49 AM

Post #4 of 8 (180 views)
Permalink
Re: growing fixed-ip network [In reply to]

On Thu, Aug 2, 2012 at 8:42 AM, Christoph Kluenter <ck [at] iphh> wrote:
> * Am Thu, Aug 02 2012 at 09:24:55 -0400 , schrieb Ravi Jagannathan:
>> It should hop on to the next subnet block if available ( assuming that in
>> LAN its a private address scheme ) .
> We only use routable IPs. thats why we have some nets which can't be subnetted.
> What difference does it make if its private adress space ?

The major reason to use private address space is that there is likely
a lot more of it than you have in public address space. if you have
effectively unlimited fixed_ip space, you can give each project a lot.
For example, we give each project a /23. While a user could
potentially still run out of address space on our system, it hasn't
happened yet with our workload.
-nld

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to : openstack [at] lists
Unsubscribe : https://launchpad.net/~openstack
More help : https://help.launchpad.net/ListHelp


reagul.2007 at gmail

Aug 2, 2012, 8:24 AM

Post #5 of 8 (183 views)
Permalink
Re: growing fixed-ip network [In reply to]

Also.. builds are better created in Private IP and then prepped to release
to Public cloud. After all just an instance rinning OS is not yet there in
terms of APP stack.

Ravi.

On Thu, Aug 2, 2012 at 10:49 AM, Narayan Desai <narayan.desai [at] gmail>wrote:

> On Thu, Aug 2, 2012 at 8:42 AM, Christoph Kluenter <ck [at] iphh> wrote:
> > * Am Thu, Aug 02 2012 at 09:24:55 -0400 , schrieb Ravi Jagannathan:
> >> It should hop on to the next subnet block if available ( assuming that
> in
> >> LAN its a private address scheme ) .
> > We only use routable IPs. thats why we have some nets which can't be
> subnetted.
> > What difference does it make if its private adress space ?
>
> The major reason to use private address space is that there is likely
> a lot more of it than you have in public address space. if you have
> effectively unlimited fixed_ip space, you can give each project a lot.
> For example, we give each project a /23. While a user could
> potentially still run out of address space on our system, it hasn't
> happened yet with our workload.
> -nld
>
> _______________________________________________
> Mailing list: https://launchpad.net/~openstack
> Post to : openstack [at] lists
> Unsubscribe : https://launchpad.net/~openstack
> More help : https://help.launchpad.net/ListHelp
>


ck at iphh

Aug 3, 2012, 4:03 AM

Post #6 of 8 (175 views)
Permalink
Re: growing fixed-ip network [In reply to]

* Am Thu, Aug 02 2012 at 09:24:55 -0400 , schrieb Ravi Jagannathan:
> It should hop on to the next subnet block if available
Since openstack doesn't do this, its just not possible to
grow grow the network ?


Christoph

>
> Ravi
>
> On Thu, Aug 2, 2012 at 5:58 AM, Christoph Kluenter <ck [at] iphh> wrote:
>
> > Hi,
> >
> > I don't know how to handle the case when a tenant has used up all IPs.
> > We use FlatNetworking, so no Floating IPs possible.
> > So, when one tenant has used up all the IPs in their net, how can I assign
> > another net
> > to the same tenant ? If I just assign another net, every new instance just
> > gets an IP from both nets.
> > But if the first net doesn't have free IPs, I get the
> > exception.NoMoreFixedIps()
> > even if the second net still has lots of IPs.
> >
> > Can this be solved with quantum ?
> >
> > Cheers,
> > Christoph
> > --
> > Christoph Kluenter E-Mail: support [at] iphh
> > Technik Tel: +49 (0)40 374919-10
> > IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> > Wendenstrasse 408 AG Hamburg, HRB 76071
> > D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger
> >
> > _______________________________________________
> > Mailing list: https://launchpad.net/~openstack
> > Post to : openstack [at] lists
> > Unsubscribe : https://launchpad.net/~openstack
> > More help : https://help.launchpad.net/ListHelp
> >

--
Christoph Kluenter E-Mail: support [at] iphh
Technik Tel: +49 (0)40 374919-10
IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
Wendenstrasse 408 AG Hamburg, HRB 76071
D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to : openstack [at] lists
Unsubscribe : https://launchpad.net/~openstack
More help : https://help.launchpad.net/ListHelp


reagul.2007 at gmail

Aug 3, 2012, 4:57 AM

Post #7 of 8 (176 views)
Permalink
Re: growing fixed-ip network [In reply to]

clarify more. By growing network do you mean adding more machine machines
instances ?

On Fri, Aug 3, 2012 at 7:03 AM, Christoph Kluenter <ck [at] iphh> wrote:

> * Am Thu, Aug 02 2012 at 09:24:55 -0400 , schrieb Ravi Jagannathan:
> > It should hop on to the next subnet block if available
> Since openstack doesn't do this, its just not possible to
> grow grow the network ?
>
>
> Christoph
>
> >
> > Ravi
> >
> > On Thu, Aug 2, 2012 at 5:58 AM, Christoph Kluenter <ck [at] iphh> wrote:
> >
> > > Hi,
> > >
> > > I don't know how to handle the case when a tenant has used up all IPs.
> > > We use FlatNetworking, so no Floating IPs possible.
> > > So, when one tenant has used up all the IPs in their net, how can I
> assign
> > > another net
> > > to the same tenant ? If I just assign another net, every new instance
> just
> > > gets an IP from both nets.
> > > But if the first net doesn't have free IPs, I get the
> > > exception.NoMoreFixedIps()
> > > even if the second net still has lots of IPs.
> > >
> > > Can this be solved with quantum ?
> > >
> > > Cheers,
> > > Christoph
> > > --
> > > Christoph Kluenter E-Mail: support [at] iphh
> > > Technik Tel: +49 (0)40 374919-10
> > > IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> > > Wendenstrasse 408 AG Hamburg, HRB 76071
> > > D-20537 Hamburg Geschaeftsfuehrung: Axel G.
> Kroeger
> > >
> > > _______________________________________________
> > > Mailing list: https://launchpad.net/~openstack
> > > Post to : openstack [at] lists
> > > Unsubscribe : https://launchpad.net/~openstack
> > > More help : https://help.launchpad.net/ListHelp
> > >
>
> --
> Christoph Kluenter E-Mail: support [at] iphh
> Technik Tel: +49 (0)40 374919-10
> IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> Wendenstrasse 408 AG Hamburg, HRB 76071
> D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger
>
> _______________________________________________
> Mailing list: https://launchpad.net/~openstack
> Post to : openstack [at] lists
> Unsubscribe : https://launchpad.net/~openstack
> More help : https://help.launchpad.net/ListHelp
>


ck at iphh

Aug 3, 2012, 5:33 AM

Post #8 of 8 (177 views)
Permalink
Re: growing fixed-ip network [In reply to]

* Am Fri, Aug 03 2012 at 07:57:03 -0400 , schrieb Ravi Jagannathan:
> clarify more. By growing network do you mean adding more machine machines
> instances ?
More instances. The tenant has used up the first net, has 254 instances running and now wants to add
more instances. But since the net is full, it has to be another net. But this does not work.

Cheers,
Christoph
>
> On Fri, Aug 3, 2012 at 7:03 AM, Christoph Kluenter <ck [at] iphh> wrote:
>
> > * Am Thu, Aug 02 2012 at 09:24:55 -0400 , schrieb Ravi Jagannathan:
> > > It should hop on to the next subnet block if available
> > Since openstack doesn't do this, its just not possible to
> > grow grow the network ?
> >
> >
> > Christoph
> >
> > >
> > > Ravi
> > >
> > > On Thu, Aug 2, 2012 at 5:58 AM, Christoph Kluenter <ck [at] iphh> wrote:
> > >
> > > > Hi,
> > > >
> > > > I don't know how to handle the case when a tenant has used up all IPs.
> > > > We use FlatNetworking, so no Floating IPs possible.
> > > > So, when one tenant has used up all the IPs in their net, how can I
> > assign
> > > > another net
> > > > to the same tenant ? If I just assign another net, every new instance
> > just
> > > > gets an IP from both nets.
> > > > But if the first net doesn't have free IPs, I get the
> > > > exception.NoMoreFixedIps()
> > > > even if the second net still has lots of IPs.
> > > >
> > > > Can this be solved with quantum ?
> > > >
> > > > Cheers,
> > > > Christoph
> > > > --
> > > > Christoph Kluenter E-Mail: support [at] iphh
> > > > Technik Tel: +49 (0)40 374919-10
> > > > IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> > > > Wendenstrasse 408 AG Hamburg, HRB 76071
> > > > D-20537 Hamburg Geschaeftsfuehrung: Axel G.
> > Kroeger
> > > >
> > > > _______________________________________________
> > > > Mailing list: https://launchpad.net/~openstack
> > > > Post to : openstack [at] lists
> > > > Unsubscribe : https://launchpad.net/~openstack
> > > > More help : https://help.launchpad.net/ListHelp
> > > >
> >
> > --
> > Christoph Kluenter E-Mail: support [at] iphh
> > Technik Tel: +49 (0)40 374919-10
> > IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
> > Wendenstrasse 408 AG Hamburg, HRB 76071
> > D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger
> >
> > _______________________________________________
> > Mailing list: https://launchpad.net/~openstack
> > Post to : openstack [at] lists
> > Unsubscribe : https://launchpad.net/~openstack
> > More help : https://help.launchpad.net/ListHelp
> >

--
Christoph Kluenter E-Mail: support [at] iphh
Technik Tel: +49 (0)40 374919-10
IPHH Internet Port Hamburg GmbH Fax: +49 (0)40 374919-29
Wendenstrasse 408 AG Hamburg, HRB 76071
D-20537 Hamburg Geschaeftsfuehrung: Axel G. Kroeger

_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to : openstack [at] lists
Unsubscribe : https://launchpad.net/~openstack
More help : https://help.launchpad.net/ListHelp

OpenStack dev RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.