public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Aliases
@ 2001-08-16 21:11 dmaynor
  2001-08-17  2:48 ` Aliases dlang
  0 siblings, 1 reply; 13+ messages in thread
From: dmaynor @ 2001-08-16 21:11 UTC (permalink / raw)
  To: linux-kernel

Is their a limit on the number of alias interfaces you can have under 2.4?

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

* Re: Aliases
  2001-08-16 21:11 Aliases dmaynor
@ 2001-08-17  2:48 ` dlang
  2001-08-18  5:43   ` Aliases Jim Roland
  0 siblings, 1 reply; 13+ messages in thread
From: dlang @ 2001-08-17  2:48 UTC (permalink / raw)
  To: dmaynor; +Cc: linux-kernel

I haven't run into it yet, and yesterday I setup a box with >1700

David Lang



On Thu, 16 Aug 2001 dmaynor@iceland.oit.gatech.edu wrote:

> Date: Thu, 16 Aug 2001 17:11:27 -0400
> From: dmaynor@iceland.oit.gatech.edu
> To: linux-kernel@vger.kernel.org
> Subject: Aliases
>
> Is their a limit on the number of alias interfaces you can have under 2.4?
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>


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

* Re: Aliases
  2001-08-17  2:48 ` Aliases dlang
@ 2001-08-18  5:43   ` Jim Roland
  2001-08-18 10:30     ` Aliases Justin Guyett
  0 siblings, 1 reply; 13+ messages in thread
From: Jim Roland @ 2001-08-18  5:43 UTC (permalink / raw)
  To: dlang, dmaynor; +Cc: linux-kernel

Having recently gone from 2.2 to 2.4 what's the device convention now?  I
thought it was eth0 (example) and eth0:0 .. eth0:255, but knew kernel 2.4
would take it further.

----- Original Message -----
From: "dlang" <dlang@enabledparadigm.com>
To: <dmaynor@iceland.oit.gatech.edu>
Cc: <linux-kernel@vger.kernel.org>
Sent: Thursday, August 16, 2001 9:48 PM
Subject: Re: Aliases


> I haven't run into it yet, and yesterday I setup a box with >1700
>
> David Lang
>
>
>
> On Thu, 16 Aug 2001 dmaynor@iceland.oit.gatech.edu wrote:
>
> > Date: Thu, 16 Aug 2001 17:11:27 -0400
> > From: dmaynor@iceland.oit.gatech.edu
> > To: linux-kernel@vger.kernel.org
> > Subject: Aliases
> >
> > Is their a limit on the number of alias interfaces you can have under
2.4?
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel"
in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at  http://www.tux.org/lkml/
> >
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>


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

* Re: Aliases
  2001-08-18  5:43   ` Aliases Jim Roland
@ 2001-08-18 10:30     ` Justin Guyett
  2001-08-18 12:32       ` Aliases Ralf Baechle
  2001-08-18 12:43       ` Aliases Michael Clark
  0 siblings, 2 replies; 13+ messages in thread
From: Justin Guyett @ 2001-08-18 10:30 UTC (permalink / raw)
  To: Jim Roland; +Cc: linux-kernel

On Sat, 18 Aug 2001, Jim Roland wrote:

> Having recently gone from 2.2 to 2.4 what's the device convention now?  I
> thought it was eth0 (example) and eth0:0 .. eth0:255, but knew kernel 2.4
> would take it further.

presuming this isn't an ifconfig limit instead of a kernel limit, trying
"ifconfig eth0:x" works for x < 10000, anything > 10000 and x becomes
x%10000.

However, 2.4 also has multiple addresses of the same type per device;
unfortunately it's fairly slow.  Adding or deleting addresses seems to
take ~5 seconds per 255 addresses on my machine, and listing addresses
takes about 1 second / 300 addresses on the same machine.

Also, listing addresses for another interface isn't any faster, which is
unfortunate; ip shouldn't need to check addresses of all interfaces just
to get the ones for the requested interface.

At least listing time seems to increase linearly with the number of
addresses.  IIRC someone posted a patch a few weeks ago to speed this up
(no longer sits for a long time before listing addresses).

time ip addr show dev eth1 | wc -l
  37766
ip addr show dev eth1  113.17s user 1.82s system 99% cpu 1:55.38 total

Also, ifconfig, which has no idea about any but the first address in an
address class, also does nothing for the same amount of time before
listing interfaces.

Anyway, it seems ip and the 2.4 scheme with multiple addresses per
interface can handle many more addresses than ifconfig and the device
alias scheme.


justin


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

* Re: Aliases
  2001-08-18 10:30     ` Aliases Justin Guyett
@ 2001-08-18 12:32       ` Ralf Baechle
  2001-08-18 12:57         ` Aliases David Lang
                           ` (2 more replies)
  2001-08-18 12:43       ` Aliases Michael Clark
  1 sibling, 3 replies; 13+ messages in thread
From: Ralf Baechle @ 2001-08-18 12:32 UTC (permalink / raw)
  To: Justin Guyett; +Cc: Jim Roland, linux-kernel

On Sat, Aug 18, 2001 at 03:30:59AM -0700, Justin Guyett wrote:

> > Having recently gone from 2.2 to 2.4 what's the device convention now?  I
> > thought it was eth0 (example) and eth0:0 .. eth0:255, but knew kernel 2.4
> > would take it further.
> 
> presuming this isn't an ifconfig limit instead of a kernel limit, trying
> "ifconfig eth0:x" works for x < 10000, anything > 10000 and x becomes
> x%10000.

For various reasons interfaces aliases are deprecated.  The recommended
way of doing things these days is just adding more addresses to an
interface with the ip(8) program from the iproute package.  It works like:

  ip addr add 192.168.2.0/24 broadcast 192.168.2.255 scope host dev eth0

> However, 2.4 also has multiple addresses of the same type per device;
> unfortunately it's fairly slow.  Adding or deleting addresses seems to
> take ~5 seconds per 255 addresses on my machine, and listing addresses
> takes about 1 second / 300 addresses on the same machine.

It seems you've tried to add individual addresses, one by one.  That's not
necessary, you can add the addresses of a whole subnet to the kernel.  If
you have a large network that's dramatically faster and easier to
administrate.

> Also, listing addresses for another interface isn't any faster, which is
> unfortunate; ip shouldn't need to check addresses of all interfaces just
> to get the ones for the requested interface.
> 
> At least listing time seems to increase linearly with the number of
> addresses.  IIRC someone posted a patch a few weeks ago to speed this up
> (no longer sits for a long time before listing addresses).
> 
> time ip addr show dev eth1 | wc -l
>   37766
> ip addr show dev eth1  113.17s user 1.82s system 99% cpu 1:55.38 total

That's crude abuse unless your IPs are actually non-contiguous in address
space - which they're almost certainly not.

> Also, ifconfig, which has no idea about any but the first address in an
> address class, also does nothing for the same amount of time before
> listing interfaces.

ifconfig is deprecated as it permits you only access to a small part of
power of the current Linux networking; ip is the recommended replacement.

> Anyway, it seems ip and the 2.4 scheme with multiple addresses per
> interface can handle many more addresses than ifconfig and the device
> alias scheme.

Try ``ip addr add 10.0.0.0/8 broadcast 10.255.255.255 scope host dev eth0''
with interface aliases :-)

  Ralf

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

* Re: Aliases
  2001-08-18 10:30     ` Aliases Justin Guyett
  2001-08-18 12:32       ` Aliases Ralf Baechle
@ 2001-08-18 12:43       ` Michael Clark
  1 sibling, 0 replies; 13+ messages in thread
From: Michael Clark @ 2001-08-18 12:43 UTC (permalink / raw)
  To: Justin Guyett; +Cc: Jim Roland, linux-kernel

Justin Guyett wrote:

> presuming this isn't an ifconfig limit instead of a kernel limit, trying
> "ifconfig eth0:x" works for x < 10000, anything > 10000 and x becomes
> x%10000.

must be a limit in your version of ifconfig.

# ifconfig --version
net-tools 1.60
ifconfig 1.42 (2001-04-13)

# ifconfig lo:10001 127.0.0.2
# ifconfig lo:20001 127.0.0.3
# ifconfig lo:10001
lo:10001  Link encap:Local Loopback  
          inet addr:127.0.0.2  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1

# ifconfig lo:20001  
lo:20001  Link encap:Local Loopback  
          inet addr:127.0.0.3  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1

> However, 2.4 also has multiple addresses of the same type per device;
> unfortunately it's fairly slow.  Adding or deleting addresses seems to
> take ~5 seconds per 255 addresses on my machine, and listing addresses
> takes about 1 second / 300 addresses on the same machine.

I can raise 1000 interfaces in 1.6 seconds with 2.4.8 on a 500MHz PIII using my
custom written ifconfig program designed for raising a batch of IPS in one go.
I've actually got up to about 64000 IPs on one interface but performance
degrades rapidly after about 8000 probably due to the kernel ip hash size - i
didn't try any higher than this. Anybody wanting more than a Class B of ip
aliases on one machine has gotta have some sort of problem so I don't think its
really an issue.

# time ./vifup -q -f ip.list internal
available interfaces for internal network: eth1
raised 1020 of 1020

real	0m1.671s
user	0m0.820s
sys	0m0.850s

> Also, listing addresses for another interface isn't any faster, which is
> unfortunate; ip shouldn't need to check addresses of all interfaces just
> to get the ones for the requested interface.

It does need to. The kernel ioctl SIOCGIFCONF only lets you fetch info for all
interfaces so you have to search through the whole lot to find the ones your
interested in. This is a standard BSD interface - or is there a new interface
used by ip??.

~mc

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

* Re: Aliases
  2001-08-18 12:32       ` Aliases Ralf Baechle
@ 2001-08-18 12:57         ` David Lang
  2001-08-18 19:29           ` Aliases David Ford
  2001-08-18 19:25         ` Aliases David Ford
  2001-08-20  1:03         ` Aliases David Lang
  2 siblings, 1 reply; 13+ messages in thread
From: David Lang @ 2001-08-18 12:57 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Justin Guyett, Jim Roland, linux-kernel

the problem with adding an entire netblock to an interface is that you
frequently have a gateway on that netblock that belongs to another
machine so you want to add 253 out of 256 addresses to your machine.

how do you do that easily?

example gateway is 192.168.1.1 and you want the rest of the 192.168.1.x
network aliased on the machine.

David Lang


 On
Sat, 18 Aug 2001, Ralf Baechle wrote:

> Date: Sat, 18 Aug 2001 14:32:32 +0200
> From: Ralf Baechle <ralf@uni-koblenz.de>
> To: Justin Guyett <justin@soze.net>
> Cc: Jim Roland <jroland@roland.net>, linux-kernel@vger.kernel.org
> Subject: Re: Aliases
>
> On Sat, Aug 18, 2001 at 03:30:59AM -0700, Justin Guyett wrote:
>
> > > Having recently gone from 2.2 to 2.4 what's the device convention now?  I
> > > thought it was eth0 (example) and eth0:0 .. eth0:255, but knew kernel 2.4
> > > would take it further.
> >
> > presuming this isn't an ifconfig limit instead of a kernel limit, trying
> > "ifconfig eth0:x" works for x < 10000, anything > 10000 and x becomes
> > x%10000.
>
> For various reasons interfaces aliases are deprecated.  The recommended
> way of doing things these days is just adding more addresses to an
> interface with the ip(8) program from the iproute package.  It works like:
>
>   ip addr add 192.168.2.0/24 broadcast 192.168.2.255 scope host dev eth0
>
> > However, 2.4 also has multiple addresses of the same type per device;
> > unfortunately it's fairly slow.  Adding or deleting addresses seems to
> > take ~5 seconds per 255 addresses on my machine, and listing addresses
> > takes about 1 second / 300 addresses on the same machine.
>
> It seems you've tried to add individual addresses, one by one.  That's not
> necessary, you can add the addresses of a whole subnet to the kernel.  If
> you have a large network that's dramatically faster and easier to
> administrate.
>
> > Also, listing addresses for another interface isn't any faster, which is
> > unfortunate; ip shouldn't need to check addresses of all interfaces just
> > to get the ones for the requested interface.
> >
> > At least listing time seems to increase linearly with the number of
> > addresses.  IIRC someone posted a patch a few weeks ago to speed this up
> > (no longer sits for a long time before listing addresses).
> >
> > time ip addr show dev eth1 | wc -l
> >   37766
> > ip addr show dev eth1  113.17s user 1.82s system 99% cpu 1:55.38 total
>
> That's crude abuse unless your IPs are actually non-contiguous in address
> space - which they're almost certainly not.
>
> > Also, ifconfig, which has no idea about any but the first address in an
> > address class, also does nothing for the same amount of time before
> > listing interfaces.
>
> ifconfig is deprecated as it permits you only access to a small part of
> power of the current Linux networking; ip is the recommended replacement.
>
> > Anyway, it seems ip and the 2.4 scheme with multiple addresses per
> > interface can handle many more addresses than ifconfig and the device
> > alias scheme.
>
> Try ``ip addr add 10.0.0.0/8 broadcast 10.255.255.255 scope host dev eth0''
> with interface aliases :-)
>
>   Ralf
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

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

* Re: Aliases
  2001-08-18 12:32       ` Aliases Ralf Baechle
  2001-08-18 12:57         ` Aliases David Lang
@ 2001-08-18 19:25         ` David Ford
  2001-08-18 21:45           ` Aliases Ralf Baechle
  2001-08-20  1:03         ` Aliases David Lang
  2 siblings, 1 reply; 13+ messages in thread
From: David Ford @ 2001-08-18 19:25 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Justin Guyett, Jim Roland, linux-kernel

>
>
>For various reasons interfaces aliases are deprecated.  The recommended
>way of doing things these days is just adding more addresses to an
>interface with the ip(8) program from the iproute package.  It works like:
>
>  ip addr add 192.168.2.0/24 broadcast 192.168.2.255 scope host dev eth0
>

You can shorten this to:

    ip a a 192.168.2.0/24 brd + dev eth0

..and leaving the scope global [by default] which makes it fully reachable.

David



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

* Re: Aliases
  2001-08-18 12:57         ` Aliases David Lang
@ 2001-08-18 19:29           ` David Ford
  0 siblings, 0 replies; 13+ messages in thread
From: David Ford @ 2001-08-18 19:29 UTC (permalink / raw)
  To: David Lang; +Cc: Ralf Baechle, Justin Guyett, Jim Roland, linux-kernel

Try before you buy.



# ip a a 192.168.0.0/24 brd + dev eth0
# ip r a 192.168.0.1/32 via 208.179.59.1 dev eth0

# ip r g 192.168.0.1
192.168.0.1 via 208.179.59.1 dev eth0  src 208.179.59.2
    cache  mtu 1500 advmss 1460

# ip r g 192.168.0.2
192.168.0.2 dev eth0  src 192.168.0.0
    cache  mtu 1500 advmss 1460

David

David Lang wrote:

>the problem with adding an entire netblock to an interface is that you
>frequently have a gateway on that netblock that belongs to another
>machine so you want to add 253 out of 256 addresses to your machine.
>
>how do you do that easily?
>
>example gateway is 192.168.1.1 and you want the rest of the 192.168.1.x
>network aliased on the machine.
>



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

* Re: Aliases
  2001-08-18 19:25         ` Aliases David Ford
@ 2001-08-18 21:45           ` Ralf Baechle
  0 siblings, 0 replies; 13+ messages in thread
From: Ralf Baechle @ 2001-08-18 21:45 UTC (permalink / raw)
  To: David Ford; +Cc: Justin Guyett, Jim Roland, linux-kernel

On Sat, Aug 18, 2001 at 03:25:31PM -0400, David Ford wrote:

> >For various reasons interfaces aliases are deprecated.  The recommended
> >way of doing things these days is just adding more addresses to an
> >interface with the ip(8) program from the iproute package.  It works like:
> >
> >  ip addr add 192.168.2.0/24 broadcast 192.168.2.255 scope host dev eth0
> 
> You can shorten this to:
> 
>     ip a a 192.168.2.0/24 brd + dev eth0
> 
> ..and leaving the scope global [by default] which makes it fully reachable.

I did not mean to reproduce the whole over 50 pages of docs documentation
in my posting.

  Ralf

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

* Re: Aliases
       [not found]   ` <20010818143232.A11687@bacchus.dhis.org.suse.lists.linux.kernel>
@ 2001-08-18 22:04     ` Andi Kleen
  0 siblings, 0 replies; 13+ messages in thread
From: Andi Kleen @ 2001-08-18 22:04 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-kernel

Ralf Baechle <ralf@uni-koblenz.de> writes:
> 
> For various reasons interfaces aliases are deprecated.  The recommended
> way of doing things these days is just adding more addresses to an
> interface with the ip(8) program from the iproute package.  It works like:
> 
>   ip addr add 192.168.2.0/24 broadcast 192.168.2.255 scope host dev eth0

Newer ifconfig also supports "add" for IPv4 (older supported it only for 
v6)

The problem of the original poster is also likely to have an too old ifconfig;
older ones had some O(n^2) algorithms with hurt with many interfaces.

-Andi

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

* Re: Aliases
  2001-08-18 12:32       ` Aliases Ralf Baechle
  2001-08-18 12:57         ` Aliases David Lang
  2001-08-18 19:25         ` Aliases David Ford
@ 2001-08-20  1:03         ` David Lang
  2001-08-20  2:29           ` Aliases Justin Guyett
  2 siblings, 1 reply; 13+ messages in thread
From: David Lang @ 2001-08-20  1:03 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Justin Guyett, Jim Roland, linux-kernel

where can I get the iproute package mentioned below. I just double checked
slackware 8.0 and it isn't included.

David Lang

On Sat, 18 Aug 2001, Ralf Baechle wrote:

> Date: Sat, 18 Aug 2001 14:32:32 +0200
> From: Ralf Baechle <ralf@uni-koblenz.de>
> To: Justin Guyett <justin@soze.net>
> Cc: Jim Roland <jroland@roland.net>, linux-kernel@vger.kernel.org
> Subject: Re: Aliases
>
> On Sat, Aug 18, 2001 at 03:30:59AM -0700, Justin Guyett wrote:
>
> > > Having recently gone from 2.2 to 2.4 what's the device convention now?  I
> > > thought it was eth0 (example) and eth0:0 .. eth0:255, but knew kernel 2.4
> > > would take it further.
> >
> > presuming this isn't an ifconfig limit instead of a kernel limit, trying
> > "ifconfig eth0:x" works for x < 10000, anything > 10000 and x becomes
> > x%10000.
>
> For various reasons interfaces aliases are deprecated.  The recommended
> way of doing things these days is just adding more addresses to an
> interface with the ip(8) program from the iproute package.  It works like:
>
>   ip addr add 192.168.2.0/24 broadcast 192.168.2.255 scope host dev eth0
>
> > However, 2.4 also has multiple addresses of the same type per device;
> > unfortunately it's fairly slow.  Adding or deleting addresses seems to
> > take ~5 seconds per 255 addresses on my machine, and listing addresses
> > takes about 1 second / 300 addresses on the same machine.
>
> It seems you've tried to add individual addresses, one by one.  That's not
> necessary, you can add the addresses of a whole subnet to the kernel.  If
> you have a large network that's dramatically faster and easier to
> administrate.
>
> > Also, listing addresses for another interface isn't any faster, which is
> > unfortunate; ip shouldn't need to check addresses of all interfaces just
> > to get the ones for the requested interface.
> >
> > At least listing time seems to increase linearly with the number of
> > addresses.  IIRC someone posted a patch a few weeks ago to speed this up
> > (no longer sits for a long time before listing addresses).
> >
> > time ip addr show dev eth1 | wc -l
> >   37766
> > ip addr show dev eth1  113.17s user 1.82s system 99% cpu 1:55.38 total
>
> That's crude abuse unless your IPs are actually non-contiguous in address
> space - which they're almost certainly not.
>
> > Also, ifconfig, which has no idea about any but the first address in an
> > address class, also does nothing for the same amount of time before
> > listing interfaces.
>
> ifconfig is deprecated as it permits you only access to a small part of
> power of the current Linux networking; ip is the recommended replacement.
>
> > Anyway, it seems ip and the 2.4 scheme with multiple addresses per
> > interface can handle many more addresses than ifconfig and the device
> > alias scheme.
>
> Try ``ip addr add 10.0.0.0/8 broadcast 10.255.255.255 scope host dev eth0''
> with interface aliases :-)
>
>   Ralf
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

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

* Re: Aliases
  2001-08-20  1:03         ` Aliases David Lang
@ 2001-08-20  2:29           ` Justin Guyett
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Guyett @ 2001-08-20  2:29 UTC (permalink / raw)
  To: David Lang; +Cc: linux-kernel

On Sun, 19 Aug 2001, David Lang wrote:

> where can I get the iproute package mentioned below. I just double checked
> slackware 8.0 and it isn't included.

Yeah, i always get upset when I go looking for it because it's not on
freshmeat.  iproute and iputils both.

ftp://ftp.inr.ac.ru/ip-routing/


justin


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

end of thread, other threads:[~2001-08-20  2:29 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-08-16 21:11 Aliases dmaynor
2001-08-17  2:48 ` Aliases dlang
2001-08-18  5:43   ` Aliases Jim Roland
2001-08-18 10:30     ` Aliases Justin Guyett
2001-08-18 12:32       ` Aliases Ralf Baechle
2001-08-18 12:57         ` Aliases David Lang
2001-08-18 19:29           ` Aliases David Ford
2001-08-18 19:25         ` Aliases David Ford
2001-08-18 21:45           ` Aliases Ralf Baechle
2001-08-20  1:03         ` Aliases David Lang
2001-08-20  2:29           ` Aliases Justin Guyett
2001-08-18 12:43       ` Aliases Michael Clark
     [not found] <00df01c127a8$c354ad20$bb1cfa18@JimWS.suse.lists.linux.kernel>
     [not found] ` <Pine.LNX.4.33.0108180245070.27721-100000@kobayashi.soze.net.suse.lists.linux.kernel>
     [not found]   ` <20010818143232.A11687@bacchus.dhis.org.suse.lists.linux.kernel>
2001-08-18 22:04     ` Aliases Andi Kleen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox