Czy wolisz polską wersję strony elektroda?
Nie, dziękuję Przekieruj mnie tamwhat is a /24 subnet
A /24 subnet is an IPv4 network where the first 24 bits of the IP address identify the network, and the remaining 8 bits identify individual hosts/devices.
A /24 subnet has the subnet mask:
255.255.255.0
It contains:
256 total IP addresses
254 usable host addresses
For example:
192.168.1.0/24
means:
Network address: 192.168.1.0
Usable host range: 192.168.1.1 to 192.168.1.254
Broadcast address: 192.168.1.255
Subnet mask: 255.255.255.0
IPv4 addresses are 32 bits long. They are usually written as four decimal numbers, for example:
192.168.1.50
Internally, that is a 32-bit binary value divided into four 8-bit octets.
The /24 part is called CIDR notation. It tells you how many bits are used for the network portion of the address.
So in:
192.168.1.0/24
the /24 means:
24 bits = network part
8 bits = host part
Since IPv4 has 32 bits total:
\[ 32 - 24 = 8 \]
So there are 8 bits left for host addresses.
With 8 host bits:
\[ 2^8 = 256 \]
So a /24 subnet has 256 total addresses.
However, in a normal IPv4 subnet, two addresses are reserved:
| Address type | Example in 192.168.1.0/24 |
Purpose |
|---|---|---|
| Network address | 192.168.1.0 |
Identifies the subnet itself |
| Broadcast address | 192.168.1.255 |
Sends to all devices in the subnet |
| Usable hosts | 192.168.1.1 to 192.168.1.254 |
Assignable to devices |
Therefore:
\[ 256 - 2 = 254 \]
So a /24 subnet usually supports 254 usable devices.
The subnet mask for /24 is:
255.255.255.0
In binary:
11111111.11111111.11111111.00000000
The 1 bits mark the network portion, and the 0 bits mark the host portion.
So for a /24, the first three octets usually stay the same, and the last octet changes per device.
Example:
192.168.1.1
192.168.1.2
192.168.1.3
...
192.168.1.254
All of those are in the same /24 subnet:
192.168.1.0/24
But this address:
192.168.2.10
is in a different /24 subnet:
192.168.2.0/24
because the third octet changed from 1 to 2.
If two devices are configured like this:
Device A: 192.168.1.10/24
Device B: 192.168.1.20/24
they are in the same subnet and can usually communicate directly.
But if they are configured like this:
Device A: 192.168.1.10/24
Device B: 192.168.2.20/24
they are in different subnets. They would normally need a router or gateway to communicate.
A common home or small-office network might look like this:
Router/gateway: 192.168.1.1
Laptop: 192.168.1.20
Printer: 192.168.1.30
PLC/IoT device: 192.168.1.40
Subnet mask: 255.255.255.0
All of those devices are on:
192.168.1.0/24
A /24 subnet means:
Subnet mask: 255.255.255.0
Network bits: 24
Host bits: 8
Total addresses: 256
Usable hosts: 254
Example:
192.168.1.0/24
usable range:
192.168.1.1 - 192.168.1.254
It is one of the most common subnet sizes used in home, office, industrial, and embedded Ethernet networks.