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
  • 99,565
  • 26
  • 120
  • 195
ThomasJH
  • 13
  • 3

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
  • 67,450
  • 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,118
  • 3
  • 11
  • 23