0

I was wondering about the addressing for certain types of networking areas...

I use 192.168.0.0 for a LAN network, 10.0.0.0 for a WAN and 172.16.0.0 for a DMZ. But I've been confused why a 10.0.0.0 is being used for a DMZ according to some sources I've found.

What are the purposes of using a 10.0.0.0(I understand this is a private network) address and a 172.16.0.0 address?

Is there a right or wrong of using a 10.0.0.0 address in a network?

Ron Maupin
  • 98,218
  • 26
  • 115
  • 191
ThomasJH
  • 13
  • 3
  • You may also find the answer to [this question](https://networkengineering.stackexchange.com/q/32119/8499) useful. – Ron Maupin Apr 23 '19 at 04:35
  • Did any answer help you? If so, you should accept the answer so that the question doesn't keep popping up forever, looking for an answer. Alternatively, you can provide and accept your own answer. – Ron Maupin Dec 15 '19 at 02:21

2 Answers2

3

Private addresses (RFC 1918) are

192.168.0.0/16
172.16.0.0/12
10.0.0.0/8

You can use any of these addresses in any combination that makes sense to you. It doesn’t matter which one is DMZ, etc.

Also, to your computer or router, there is no difference between public and private addresses. IP addresses are just 32 bit numbers and computers treat them all the same.

Ron Trunk
  • 66,852
  • 5
  • 65
  • 126
1

In the Internet addressing architecture, a private network is a network that uses private IP address space. These addresses are commonly used for local area networks in residential, office, and enterprise environments. Wikipedia

According to your requirement you can use any IP address range in your network. It is possible. Generally IP address range should select based on number of computers. It is does not matter which range or which class you have been using. But you should consider about subnet mask to define number of ip address.

infra
  • 3,098
  • 3
  • 10
  • 23