What Is First usable address in Networking?
This page mentions older exam versions. See the Current Exam Context and Legacy Exam Context sections below for the updated mapping.
On This Page
Quick Definition
When a network is divided into smaller subnetworks, each subnetwork gets a range of IP addresses. The very first address in that range is reserved as the network address itself, so it cannot be used by a computer or device. The first usable address is the next number after that network address, and it is the first IP you can safely assign to a host like a router, server, or workstation.
Commonly Confused With
The network address is the identifier of the entire subnet, with all host bits set to 0. It is not assignable to a host. The first usable address is the network address plus one and is the first assignable IP.
For 192.168.1.0/24, the network address is 192.168.1.0, while the first usable address is 192.168.1.1.
The default gateway is a router interface IP that hosts use to send traffic outside their subnet. It is often, but not always, the first usable address. In many networks, the first usable address is assigned to the gateway for consistency, but the gateway could be any usable address.
On a subnet 10.10.10.0/24, the first usable address 10.10.10.1 is commonly used as the default gateway, but you could use 10.10.10.254 instead.
The last usable address is the highest assignable IP in the subnet, which is one less than the broadcast address. The first usable address and last usable address mark the boundaries of the host range.
For a /24 subnet 192.168.1.0, the first usable is 192.168.1.1 and the last usable is 192.168.1.254.
Must Know for Exams
The concept of the first usable address is tested heavily in CompTIA Network+, Cisco CCNA, Juniper JNCIA, and other vendor-neutral certifications. In the CompTIA Network+ exam (N10-008 and later), subnetting questions often ask you to determine the first usable address given an IP and subnet mask. For example, the exam might show an IP like 192.168.10.60/27 and ask: "What is the first usable host address on this subnet?" You must calculate the network address (192.168.10.32) and add 1 to get 192.168.10.33.
In the Cisco CCNA (200-301), subnetting is a core objective under the "Network Fundamentals" domain. Exam questions may present a scenario where you are given an IP address range and asked to configure an interface with the correct first usable address. They also test your ability to identify the valid host range for a subnet, which directly includes the first usable address. Some questions combine subnetting with routing concepts, such as: "Which of the following is a valid IP address for a host on the 10.10.10.0/25 network?" The options will include the network address (10.10.10.0), broadcast address (10.10.10.127), and valid addresses like 10.10.10.1 (first usable) and 10.10.10.126 (last usable).
In more advanced exams like the Cisco CCNP or Juniper JNCIS, you might encounter questions that involve summarization and route aggregation, where inaccurate identification of the first usable address could lead to incorrect summarization boundaries. For example, if you are summarizing two /25 subnets (10.0.0.0/25 and 10.0.0.128/25) into a /24, the first usable address of the supernet is 10.0.0.1, but the network address of the supernet is 10.0.0.0.
Exam questions often hide traps by using odd subnet masks or by asking for the first usable address when the subnet is a /31 (where there is no network address per RFC 3021). Most certifications still teach the traditional /30 for point-to-point links, but some newer exam versions include /31. You must know when to apply the reserved address rule and when it does not apply.
Finally, many exams present questions in the context of network design: "You need to create a subnet that supports 30 hosts. What subnet mask should you use and what is the first usable address?" You first choose the /27 mask, then calculate the first usable address based on the given network base. Always remember: the first usable address = network address + 1. This simple formula is tested repeatedly across all certification levels.
Simple Meaning
Imagine you live on a street where each house has a number, and the street itself has a name that applies to the whole block. The street address for the block itself is like the "network address", it labels the entire neighborhood but no one actually lives there. The first house number on that street is then number 1. But in IP networking, number 1 is often reserved as that street label, so the first house you can actually move into is number 2. That number 2 is the "first usable address."
In a typical home network using a 192.168.1.0 subnet with a 255.255.255.0 mask, the network address is 192.168.1.0. The first usable address would be 192.168.1.1. This is the address assigned to your router so that it can communicate with devices on that network. Without this address, your router wouldn't have a valid IP to send and receive traffic.
This concept is critical when designing networks because using the reserved network address or broadcast address (the last address in the range) by mistake would break communication. Every exam for IT certifications tests your ability to quickly identify the first usable address given an IP and subnet mask. Think of it like knowing which seat on a bus is actually available, the first seat might be taken by the driver, so the first passenger seat is truly the first usable one.
In larger enterprise networks, subnetting allows many smaller networks to exist within one larger block. For each subnetwork, you must calculate its own first usable address. For example, if you have a 10.0.0.0/24 network, the first usable address is 10.0.0.1. If you subnet that into /25 networks, the first subnet gets 10.0.0.1 as its first usable address, and the second subnet gets 10.0.0.129 as its first usable address. Understanding this ensures you never accidentally assign an address that belongs to the network or broadcast address, which would cause connectivity issues.
Full Technical Definition
The first usable address in an IPv4 subnet is defined as the network address incremented by one. It is the lowest IP in the subnet's host range that can legally be assigned to an interface. This concept is foundational to IPv4 subnetting, which follows the standards defined in RFC 791 and subsequent RFCs.
In any IPv4 subnet, the entire address space is divided into a network portion and a host portion. The subnet mask determines this boundary. The network address (also called the subnet ID) is the address where all host bits are set to 0. This address is reserved and cannot be assigned to a host because it is used to identify the subnet itself. Similarly, the broadcast address has all host bits set to 1, and it is used to send traffic to all hosts on the subnet. The addresses between these two extremes form the host range. The first usable address is simply the network address plus one.
To calculate the first usable address, you take the IP in binary notation, clear all host bits to zero to get the network address, then add 1. For example, given the IP 172.16.5.100 with a /20 subnet mask (255.255.240.0), the network address is 172.16.0.0. Adding 1 gives 172.16.0.1, which is the first usable address. Note that the first usable address is not always 0.0.0.1 of the whole IP space, it is relative to each specific subnet.
In Classless Inter-Domain Routing (CIDR), there is no requirement that the first usable address be used as the default gateway, though in many small networks it is common practice to assign the router the first usable address. In enterprise networks, the gateway could be any usable address, but the first one is often chosen for consistency and ease of documentation.
When subnetting a larger block, each resulting subnet has its own first and last usable addresses. For a /30 subnet, which provides only two host addresses, the first usable address is the network address +1, and the second usable address is the broadcast address -1. This is commonly used for point-to-point links. For a /31 subnet, which provides two host addresses with no separate network or broadcast addresses (a special case defined in RFC 3021), the concept of a reserved network address does not apply, and both addresses are usable. However, this is an exception.
In IPv6, the concept is similar but the first address in a subnet (with interface identifier all zeros) is reserved for the subnet router anycast address, so the first usable unicast address typically starts at ::1 for the router interface. But the term "first usable address" is most commonly used in IPv4 contexts for certification exams.
Real-Life Example
Think about a row of apartment buildings on a street. The street itself has a name, like "Main Street." The first apartment building is number 1 Main Street. But number 1 is actually the address for the entire building's mail room or lobby, it's the common address that represents the whole building, not a specific apartment. If you want to send a package to an actual resident, you cannot use "1 Main Street" because that would go to the lobby. Instead, you need to use apartment numbers. The first apartment that can actually receive mail is Apartment 2, which is like the first usable address.
In this analogy, the street name represents the network address (the subnet identifier). The building number (1 Main Street) is like the network ID, it describes the whole subnet but can't be used for a specific host. The apartments are the host addresses. The building manager (router) usually lives in Apartment 2, the first usable address. If someone sends a letter to "1 Main Street," it goes to the lobby and doesn't reach a resident. If they send it to "1 Main Street, Apartment 1," that apartment doesn't exist because it's the lobby. So the first real apartment is Apartment 2.
Now imagine the street has multiple buildings (subnets). Each building has its own lobby (subnet address) and its own first apartment (first usable address). If you mix up the addresses, you might send a package to the wrong building's lobby, and the resident never gets it. That's why network engineers must carefully calculate first usable addresses when designing IP schemes.
In a larger analogy, consider a hotel with many rooms. The hotel's main address is the network address. The front desk (router) uses the first room number, 101, as its internal address. Guests are assigned rooms 102, 103, and onward. The first usable guest room is 102. If you accidentally assign a guest to room 101, they would end up at the front desk, which would cause confusion. Similarly, in networking, if you assign a host the network address, that host will have problems communicating because it conflicts with the subnet identifier.
Why This Term Matters
Understanding the first usable address is not just an exam trick, it is a practical necessity for anyone who configures routers, switches, firewalls, or assigns static IP addresses. When you deploy a new subnet in a production environment, you must know which addresses are available to avoid conflicts. If you accidentally assign a device the network address (which is reserved), that device will not communicate correctly because other devices may treat that address as the subnet identifier.
In real-world IT, network engineers use this concept daily. For example, when setting up a new VLAN on a switch, you need to configure an SVI (Switched Virtual Interface) with an IP address. The standard practice is to use the first usable address in that VLAN's subnet as the default gateway. If you use a different address, it still works, but using the first one makes documentation and troubleshooting easier.
when you are subnetting a large block for multiple departments or customers, you need to calculate the first usable address for each subnetwork. For example, a /26 subnet provides 62 host addresses. The first usable address is the network address +1. If you incorrectly calculate this, you might waste addresses or create overlapping subnets that cause routing issues.
Cloud networking platforms like AWS, Azure, and GCP also require you to specify the first usable address when creating VPCs or subnets. In AWS, the first four IP addresses in a VPC subnet are reserved (network, VPC router, DNS, and future use). So the actual first usable address for an EC2 instance is the fifth address. Understanding the standard first-usable concept helps you adapt to these platform-specific reservations.
In troubleshooting, if a device cannot communicate, one of the first things to check is whether its IP address matches the network address or broadcast address. For example, if you see an IP like 10.0.0.0 on a host with a /8 mask, that is the network address, it belongs to no one. The host will not be able to send or receive traffic correctly. Knowing the first usable address helps you quickly spot such misconfigurations.
How It Appears in Exam Questions
Multiple-choice questions: The most common format is a question that provides an IP address and subnet mask (or CIDR notation) and asks for the first usable host address. For example: "Given the IP address 172.16.15.150 /20, what is the first usable host address on this subnet?" The correct answer is 172.16.0.1 because the network address is 172.16.0.0. Distractors might include the network address itself (172.16.0.0), an address from a different subnet (172.16.15.1), or the broadcast address (172.16.15.255).
Scenario-based questions: A question might describe a network administrator setting up a new branch office. They are given a 192.168.10.0/26 network and need to assign an IP to the router's LAN interface. Which IP should they use? Answer: 192.168.10.1. The scenario might also require you to pick the first usable address for a specific device like a server, and you must ensure it is not the network or broadcast address.
Troubleshooting questions: A host has an IP of 10.0.0.0/8 and cannot connect to the internet. The question asks: "What is the most likely cause?" The answer: The host is configured with the network address. You would need to identify that the first usable address would be 10.0.0.1.
Drag-and-drop or fill-in questions: In online exams like the CCNA, you might be presented with a table of subnets and requested to enter the first usable address for each. For example, if the table shows "Subnet: 198.51.100.64/28," you must type "198.51.100.65" as the first usable address.
Design questions: A company has a 10.10.10.0/24 block and needs to create four equal-sized subnets. What is the first usable address in the third subnet? You must first determine the subnet size (/26), then calculate the third subnet's network address (10.10.10.128), then add 1 to get 10.10.10.129.
Trick questions with /31: Some questions may present a /31 subnet and ask for the first usable address. For a /31, there is no separate network or broadcast address, so both addresses are usable. The first usable address is the same as the network address (e.g., 10.0.0.0 is both the network address and a valid host address). But most classic exams expect you to know that /31 is an exception.
Combined with VLSM: A question might provide a VLSM (Variable Length Subnet Mask) design. You are given a set of requirements (number of hosts per subnet) and a base network. You must propose subnet masks and then list the first usable address for each subnet. This tests both subnetting and first-address calculation.
Practise First usable address Questions
Test your understanding with exam-style practice questions.
Example Scenario
Imagine you are a junior network administrator at a small company. The company has been given the network 203.0.113.0/24 from their ISP. Your boss asks you to set up a new subnet for the Sales department that needs at least 50 hosts. You decide to use a /26 subnet mask, which provides 62 usable host addresses. The base network is 203.0.113.0/24, and you choose the first /26 subnet: 203.0.113.0/26.
Your task: Configure the default gateway (router interface) on that subnet. The router interface must be assigned the first usable address. The network address of the subnet is 203.0.113.0 (all host bits zero). The first usable address is that plus one, so 203.0.113.1. You configure the router with IP 203.0.113.1/26. Then you configure a DHCP scope for Sales that starts at 203.0.113.2 and ends at 203.0.113.62 (the last usable).
A week later, a new employee in Sales cannot connect. You check his PC and find the IP address is set statically to 203.0.113.0. You immediately recognize the problem: he has been assigned the network address, which is reserved. You explain that the first address that can be used is .1 (the router) or .2 onward. You change his IP to 203.0.113.5, and connectivity is restored.
Now consider a more complex scenario: The Sales department needs a second subnet for wireless guests. You decide to use the next /26 subnet: 203.0.113.64/26. The network address is 203.0.113.64, so the first usable address for that subnet is 203.0.113.65. You configure a separate router interface with that IP. This avoids overlapping with the wired Sales subnet.
If you had accidentally reused 203.0.113.1 on the wireless subnet, it would conflict with the wired subnet's router, causing intermittent connectivity issues. That is why precise calculation of the first usable address is critical in real network design.
Common Mistakes
Using the network address as a host address.
The network address is reserved to identify the subnet itself. Assigning it to a host creates an IP conflict and breaks routing because other devices treat that address as the subnet identifier.
Always add 1 to the network address. For example, if the network address is 192.168.1.0, the first usable is 192.168.1.1.
Using the broadcast address as a host address.
The broadcast address is used to send packets to all hosts on the subnet. Configuring it on a host will cause the device to receive broadcast traffic that it shouldn't, and other hosts may not reach it correctly.
The last usable address is one less than the broadcast address. For a /24 subnet, broadcast is 192.168.1.255, so last usable is 192.168.1.254. Never use the broadcast address.
Assuming the first usable address is always .1 regardless of subnet mask.
In a larger subnet like 10.0.0.0/8, the first usable address is 10.0.0.1, but in a smaller subnet like 10.0.0.64/26, the first usable address is 10.0.0.65. The .1 belongs to a different subnet.
Always calculate the network address first by applying the subnet mask. Then add 1. Never assume it's .1.
Forgetting to check if the subnet is a /31.
In a /31 subnet, there is no reserved network or broadcast address. The first usable address is the same as the network address. Using the traditional rule would waste the first address.
For /31 subnets, both addresses are usable. The first usable address is the network address itself. Know when to apply this exception.
Miscalculating the network address for a subnet that is not aligned to classful boundaries.
For example, with IP 10.10.10.10 /23, the network address is 10.10.10.0 (not 10.10.0.0). Adding 1 gives 10.10.10.1, but many mistakenly use 10.10.0.1 because they think in classful terms.
Use binary or the "AND" operation to determine the network address precisely. For /23, the third octet changes in increments of 2.
Exam Trap — Don't Get Fooled
{"trap":"The question gives an IP like 192.168.1.0 /24 and asks for the first usable address. The obvious answer is 192.168.1.1. But the trap is that the examiner may present the network address itself as an option (192.
168.1.0) or a different address like 192.168.1.255, and the student who rushes may select the network address.","why_learners_choose_it":"Learners see the IP address 192.168.1.0 and think it's the start of the range, so they assume it is the first usable address.
They fail to remember that the very first address in the range is the network identifier and is reserved.","how_to_avoid_it":"Always perform the calculation: determine the network address (all host bits zero), then add 1. If the question already gives an IP that looks like a network address, verify by checking the subnet mask.
The first usable address is never the network address (except for /31). Memorize: first usable = network address + 1."
Step-by-Step Breakdown
Identify the IP address and subnet mask
Start with the given IP address and its subnet mask (in dotted decimal or CIDR notation). For example, 10.20.30.40 /24.
Convert the subnet mask to binary
Write the subnet mask in binary. For /24, the binary is 11111111.11111111.11111111.00000000. This tells you which bits belong to the network portion (1s) and which to the host portion (0s).
Convert the IP address to binary
Write the IP address in binary to align it with the subnet mask. For 10.20.30.40, the binary is 00001010.00010100.00011110.00101000.
Perform a bitwise AND to get the network address
AND each bit of the IP with the corresponding bit of the subnet mask. Where both are 1, the result is 1. Otherwise, 0. This yields the network address in binary: 00001010.00010100.00011110.00000000, which is 10.20.30.0.
Add 1 to the network address
Take the network address (10.20.30.0) and add 1 to the last octet (or to the host portion in general). This gives 10.20.30.1, which is the first usable address.
Verify that the address is not the broadcast address
Check that the first usable address is less than the broadcast address (network address + (2^(number of host bits) - 1)). For /24, the broadcast is 10.20.30.255, so 10.20.30.1 is valid.
Apply to the specific subnetting context
If working with a larger block divided into smaller subnets, repeat this process for each subnet. The first usable address of each subnet will differ based on its own network address.
Practical Mini-Lesson
Understanding the first usable address is a fundamental skill for any network professional. It is not just about passing an exam; it is about designing and maintaining networks that function correctly. When you configure a router interface, you assign an IP address that becomes the default gateway for hosts on that subnet. Choosing the first usable address is a best practice because it is predictable and easy to document.
In practice, you will often work with DHCP servers that hand out IP addresses from a pool. The DHCP server must be configured with a start address that is the first usable address after the gateway IP (if the gateway is also the first usable). For example, if the gateway is 192.168.1.1, the DHCP pool can start at 192.168.1.2. If you accidentally include the gateway or network address in the DHCP pool, you will create an IP conflict.
When deploying cloud resources, each virtual network has its own first usable address rules. In AWS VPCs, for example, the first four IP addresses in any subnet are reserved by AWS. So if you create a subnet 10.0.0.0/24, the first usable address for your EC2 instance is actually 10.0.0.4, not 10.0.0.1. This is a platform-specific twist on the standard concept. When you move between on-premises and cloud, you must adapt your understanding.
One common mistake that professionals make is confusing the first usable address with the network address when summarizing routes. For example, when advertising a route to a neighbor, the network address is used (e.g., 10.10.10.0/24), not the first usable address. The first usable address is only for host assignment. Keeping these roles distinct prevents miscommunication in routing protocols.
What can go wrong in production? If you misconfigure a server with the network address, that server will be unreachable from other subnets. Routers will not forward traffic to the network address because it is reserved. The server will only receive packets that are specifically addressed to it by its MAC layer, but since many devices treat the network address as a broadcast, you might see intermittent connectivity. Also, if a switch port receives a packet with a source IP equal to the network address, some switches may flag it as an invalid source address and drop it.
Another pitfall occurs when you use subnet zero (the first subnet in a larger network) and forget that the network address of that subnet may be the same as the base network address. For example, 192.168.0.0/24 has network address 192.168.0.0, but if you are subnetting 192.168.0.0/23 into two /24s, the first /24 has network address 192.168.0.0. The first usable address is 192.168.0.1. The second /24 has network address 192.168.1.0, so its first usable is 192.168.1.1. You must not overlap them.
Ultimately, the first usable address is a small but critical piece of the larger puzzle of IP addressing. Mastering it makes you faster at subnetting and less prone to configuration errors. In troubleshooting, if a device cannot communicate, always check if its IP matches the network or broadcast address, it's one of the first things a seasoned engineer looks for.
Memory Tip
Network address plus one equals first usable, never forget the +1.
Covered in These Exams
Current Exam Context
Current exam versions that test this topic — use these objectives when studying.
200-301Cisco CCNA →N10-009CompTIA Network+ →Legacy Exam Context
Older materials may mention these exam versions, but learners should use the current objectives for their target exam.
N10-008N10-009(current version)Related Glossary Terms
A 2-in-1 laptop is a portable computer that can switch between a traditional laptop form and a tablet form, usually by detaching or rotating the keyboard.
The 24-pin motherboard connector is the main power cable that connects the computer's power supply unit (PSU) to the motherboard, supplying electricity to the motherboard and its components.
Two-factor authentication (2FA) is a security method that requires two different types of proof before granting access to an account or system.
A 3D printer is a device that creates physical objects by depositing layers of material based on a digital model.
5G is the fifth generation of cellular network technology, designed to deliver faster speeds, lower latency, and support for many more connected devices than previous generations.
The 8-pin CPU connector is a power cable from the power supply that delivers dedicated electricity to the processor on a computer's motherboard.
802.1Q is the networking standard that allows multiple virtual LANs (VLANs) to share a single physical network link by tagging Ethernet frames with VLAN identification information.
802.1X is a network access control standard that authenticates devices before they are allowed to connect to a wired or wireless network.
Frequently Asked Questions
Why can't I use the network address as a host address?
The network address is reserved by the networking standard to identify the subnet itself. If you assign it to a host, other devices will treat that address as a subnet identifier, leading to routing problems and communication failures.
Is the first usable address always the default gateway?
Not always, but it is a common best practice to assign the first usable address to the default gateway for consistency. In enterprise networks, the gateway can be any address in the usable range.
What is the first usable address for a /31 subnet?
For a /31 subnet, there is no reserved network or broadcast address. The first usable address is the same as the network address itself. Both addresses in the subnet are valid host addresses.
How do I calculate the first usable address quickly?
Determine the network address by performing a bitwise AND between the IP and subnet mask. Then add 1 to the host portion. That is your first usable address.
Does the first usable address change if I use a different subnet mask?
Yes, the subnet mask determines where the network boundary lies. Changing the subnet mask will change the network address and consequently the first usable address.
Can the first usable address be .0?
In standard IPv4 subnetting (except /31), no. The network address ends with .0, and the first usable is .1. However, in /31 subnets, the first usable address can be .0 because there is no separate network identifier.
Summary
The first usable address is a foundational concept in IP subnetting that every IT professional must master. It is simply the network address plus one, representing the first IP address that can be assigned to a host interface. This seemingly small detail is critical for correct network design, configuration, and troubleshooting.
In exams like CompTIA Network+ and Cisco CCNA, you will encounter numerous questions requiring you to calculate the first usable address quickly and accurately. Common mistakes include using the network address itself or misapplying the concept to /31 subnets. By understanding the binary calculation and practicing with various subnet masks, you can avoid these traps.
In real-world IT, the first usable address is used for default gateways, DHCP pool start addresses, and static IP assignments. Cloud platforms like AWS modify the standard reservation rules, so you must adapt when working in the cloud. Ultimately, the first usable address is not just a test concept, it is a daily tool for network engineers. Mastering it will save you from misconfigurations that can lead to downtime and frustration.