What is the maximum number of IPs that can be assigned to a given computer?

26,804

Solution 1

According to the replies to this post to the linux-net mailing list,

  • At one point, the Linux kernel had a limit of 255 aliases per physical interface device.
  • As of Linux kernel version 2.2, there is no (practical) limit, with the second response citing personal experience with having aliased over 5,000 addresses to a single ethernet card.

Of course, binding large numbers of aliases to a single device will impose memory requirements and may have performance implications, so it's entirely possible that your hardware may limit the number of aliases you can add, even if the kernel itself doesn't.

Solution 2

More than you could ever possibly need. Use ip addr add to add addresses to an interface.

Solution 3

The maximum would be 4,294,967,294 IP addresses (assuming you're talking about IPV4, you have enough RAM, and we take out one for the broadcast address and one for the network address).

Share:
26,804

Related videos on Youtube

Jeremy Boyd
Author by

Jeremy Boyd

I'm a small time web developer, trying to make it in this world filled with small time web developers. It seems everyone can make websites...

Updated on September 17, 2022

Comments

  • Jeremy Boyd
    Jeremy Boyd almost 2 years

    I really need to know this for a linux server, but since it also applies to client OSes, I figured the question should be posed here instead of server fault.

  • Ignacio Vazquez-Abrams
    Ignacio Vazquez-Abrams over 13 years
    There's no need to create aliases for this; ip addr add can bind the addresses to a single device.
  • Dave Sherohman
    Dave Sherohman over 13 years
    Yes, and it does so by aliasing additional addresses onto the same device. Whether the alias is named (eth0:0) or not, it's still an alias. Granted, the authors of the ip(8) man page choose not to use the term "alias" because it treats all addresses as equal, pretty much the entire rest of the world agrees that assigning multiple addresses to the same interface is called "IP aliasing".
  • kasperd
    kasperd over 8 years
    At some point I had the need to assign lots of IPv6 addresses to a single host, and once I reached around 4000 addresses neighbor discovery broke. The exact number of addresses it took to break neighbor discovery varied a bit between experiments, but it was always quite close to 4000.