# Subnet Calculator

**Input:** `192.168.1.0/24`

## Results

| Field | Value |
|---|---|
| Network Address | 192.168.1.0 |
| Broadcast | 192.168.1.255 |
| First Usable Host | 192.168.1.1 |
| Last Usable Host | 192.168.1.254 |
| Usable Hosts | 254 |
| Total Addresses | 256 |
| Netmask | 255.255.255.0 (/24) |
| Wildcard Mask | 0.0.0.255 |
| Class | C |
| Type | private |

## Binary

```
IP       11000000.10101000.00000001.00000000
Netmask  11111111.11111111.11111111.00000000
Network  11000000.10101000.00000001.00000000
```

---
192.168.1.0/24 belongs to network 192.168.1.0 (255.255.255.0). The broadcast address is 192.168.1.255, giving 256 total addresses and 254 usable hosts in the range 192.168.1.1 — 192.168.1.254. The wildcard mask is 0.0.0.255. The IP is class C and is classified as private.

Source: https://myconf.it/subnet-calculator
