Adding Hosts on Public IP Network

1

My company has a local network with hosts on public IP range 199.5.x.x obtained from our ISP and a subnet of 255.255.255.0. We do not use DHCP. When the number of users have increased and we are running out of IPs, we would like to upgrade our network from class C to class B to accommodate more hosts. Is there any way I can do this through the use of subnets without involving the ISP?

user168890

Posted 2012-10-30T14:32:46.250

Reputation: 11

1You need all your hosts to be on public IPs? (all you hosts are public servers?) – laurent – 2012-10-30T14:48:27.910

Answers

3

You cannot magically create new IP addresses.

Instead, you need to use a router with NAT to put multiple computers behind a single public IP address.

SLaks

Posted 2012-10-30T14:32:46.250

Reputation: 7 596

1

You can not upgrade from class C to class B. These classes of subnets are no longer in use. Instead Classless Inter-Domain Routing (CIDR) is used these days.

You will either have to:

  • Contact your ISP, ask for more IPs. Explain to the ISP why you need them.
  • Or use less IPv4 IPs (can you use IPv6?)
  • Or use a ugly hack called NAT. It is an abomination to the way TCP/IP works and it may require a lot of workarounds to get back to full functionality. (E.g. old fashioned TCP and NAT is fun).

Hennes

Posted 2012-10-30T14:32:46.250

Reputation: 60 739

0

You really should use DHCP to handle the IP addresses in your intranet. You can set this feature up on your router. It is easy to do and it will automatically take care of all of your IP address needs for you.

Linger

Posted 2012-10-30T14:32:46.250

Reputation: 3 126