What Is A Subnet (Subnetwork) - Definition From TechTarget
What Is A Subnet (Subnetwork) - Definition From TechTarget
What is a subnet?
A subnet, or subnetwork, is a segmented piece of a larger network. More specifically,
subnets are a logical partition of an Internet Protocol (IP) network broken into multiple,
smaller network segments. Subnets are often used to divide clients logically or by location
to help the network traffic flow better. Each subnet has an assigned range of possible IP
addresses.
Organizations use a subnet to subdivide large networks into smaller, more efficient
subnetworks. One goal of a subnet is to split a large network into a grouping of smaller,
interconnected networks to help minimize traffic. This way, traffic doesn't have to flow
through unnecessary routes, increasing network speeds.
The value of subnets can be compared to addressing a letter. The letter's city, state and zip
code are used at the post office to determine if the letter is local and can be handled by that
sorting office or if it needs to be sent to another office where it can then be delivered from.
Without this, each post office would need to know where every street in the country is; with
this, each post office only needs to know the addresses it cares for and how to forward
other mail based on simple routing rules.
Each organization is responsible for determining the number and size of the subnets it
creates, within the limits of the address space available for its use. Additionally, the details
of subnet segmentation within an organization remain local to that organization.
An IP address is divided into two fields: a Network Prefix (also called the Network ID) and a
Host ID. What separates the Network Prefix and the Host ID depends on whether the
address is a Class A, B or C address. Figure 1 shows an IPv4 Class B address,
172.16.37.5. Its Network Prefix is 172.16.0.0, and the Host ID is 37.5.
The subnet mechanism uses a portion of the Host ID field to identify individual subnets.
Figure 2, for example, shows the third group of the 172.16.0.0 network being used as a
Subnet ID. A subnet mask is used to identify the part of the address that should be used as
the Subnet ID. The subnet mask is applied to the full network address using a
https://www.techtarget.com/searchnetworking/definition/subnet#:~:text=A subnet%2C or subnetwork%2C is,the network traffic flow better. 2/7
3/5/25, 7:55 PM What is a subnet (subnetwork)? | Definition from TechTarget
binary AND operation. AND operations operate, assuming an output is "true" only when
both inputs are "true." Otherwise, the output is "false." Only when two bits are both 1, this
results in the Subnet ID.
Figure 2 shows the AND of the IP address, as well as the mask producing the Subnet ID.
Any remaining address bits identify the Host ID. The subnet in Figure 2 is identified as
172.16.2.0, and the Host ID is 5. In practice, network staff will typically refer to a subnet by
just the Subnet ID. It would be common to hear someone say, "Subnet 2 is having a
problem today," or, "There is a problem with the dot-two subnet."
Figure 2. Subnet ID
The Subnet ID is used by routers to determine the best route between subnetworks. Figure
3 shows the 172.16.0.0 network, with the third grouping as the Subnet ID. Four of the 256
possible subnets are shown connected to one router. Each subnet is identified either by its
Subnet ID or the subnet address with the Host ID set to .0. The router interfaces are
assigned the Host ID of .1 -- e.g., 172.16.2.1.
When the router receives a packet addressed to a host on a different subnet than the
sender -- host A to host C, for example -- it knows the subnet mask and uses it to determine
the Subnet ID of host C. It examines its routing table to find the interface connected to host
C's subnet and forwards the packet on that interface.
https://www.techtarget.com/searchnetworking/definition/subnet#:~:text=A subnet%2C or subnetwork%2C is,the network traffic flow better. 3/7
3/5/25, 7:55 PM What is a subnet (subnetwork)? | Definition from TechTarget
Subnet segmentation
A subnet itself also may be segmented into smaller subnets, giving organizations the
flexibility to create smaller subnets for things like point-to-point links or for subnetworks that
support a few devices.
The example below uses an 8-bit Subnet ID. The number of bits in the subnet mask
depends on the organization's requirements for subnet size and the number of subnets.
Other subnet mask lengths are common. While this adds some complexity to network
addressing, it significantly improves the efficiency of network address utilization.
A subnet can be delegated to a suborganization, which itself might apply the subnetting
process to create additional subnets, as long as sufficient address space is available.
Subnetting performed by a delegated organization is hidden from other organizations. As a
result, the Subnet ID field length and where subnets are assigned can be hidden from the
parent (delegating) organization, a key characteristic that allows networks to be scaled up
to large sizes.
In modern routing architectures, routing protocols distribute the subnet mask with routes
and provide mechanisms to summarize groups of subnets as a single routing table entry.
Older routing architectures relied on the default Class A, B and C IP address classification
to determine the mask to use.
CIDR notation is used to identify Network Prefix and Mask, where the subnet mask is a
number that indicates the number of ones in the Mask (e.g., 172.16.2.0/24). This is also
known as Variable-Length Subnet Masking and CIDR. Subnets and subnetting are used in
both IPv4 and IPv6 networks, based on the same principles.
Reallocating IP addresses. Each class has a limited number of host allocations. For
example, networks with more than 254 devices need a Class B allocation. If a network
administrator is working with a Class B or C network and needs to allocate 150 hosts for
three physical networks located in three different cities, they would need to either
request more address blocks for each network -- or divide a network into subnets that
enable administrators to use one block of addresses on multiple physical networks.
Provide routing hints. IP addresses allow any device to communicate with every other
device, but in reality, not every device is directly connected together. Routing tables can
be used to direct the data traffic to use specific physical links between network
equipment.
IP addressing and subnetting are important and basic elements of networks. Learn how
to calculate a subnet mask based on the required number of subnets and hosts.