1

Possible Duplicate:
How does IPv4 Subnetting Work?

We currently have a: 192.168.3.0/24 Subnet.

We are looking to make this subnet larger as we need about 500 IP addresses in the above range.

How should we do this?

Adam Chetnik
  • 542
  • 6
  • 19
  • There are only 255 addresses in the above subnet. To gain more addresses, you will either need to make a larger subnet, say a /23 or add an additional routed subnet. – EEAA Jan 28 '13 at 14:46
  • You should consider instead creating more than one routed network rather than one huge bridged network. – David Schwartz Jan 29 '13 at 03:40

3 Answers3

4

As others have answered the question, I won't bother to repeat what has been said. However, be sure you understand the ramifications of expanding a subnet to support 500 hosts.

There will be a lot more broadcast 'noise' on this subnet. Each ARP request will be seen by all 500 hosts, as will every DHCP request and various other broadcasts. As you have more devices, you will also have a greater volume of broadcast traffic.

On top of that you have unicast flooding performed by switches.

mdj
  • 41
  • 2
1

You would have to redo the network settings on all machines to use a /23 instead of a /24. Or you solve it in layer 3 and use two /24's and a router.

Dennis Kaarsemaker
  • 18,793
  • 2
  • 43
  • 69
1

Set your new IP network based on the max range of 500 IP addresses. If you use any Supernet calculator, you may get the following result as an example -

CIDR Address range - 192.168.2.0 - 192.168.3.255

  • this will allow you to keep your original net block, except that you have to change the netmask to /23, and provide the new hosts IP address within the 192.168.2.0

Net CIDR notation (netmask) - 192.168.2.0/23

So you are basically extending the netmask to /23. By the way, this new subnet will give you a maximum of 510 addresses.

Daniel t.
  • 9,061
  • 1
  • 32
  • 36