Skip to main content
DevTools24

サブネット計算ツール

ネットワークアドレス、ブロードキャスト、使用可能なホスト、CIDR表記を含むIPv4サブネット情報を計算します。

/0/8/16/24/32
Common:

About Subnetting

  • • CIDR (Classless Inter-Domain Routing) notation specifies the network portion of an IP
  • • /24 means 24 bits for network, 8 bits for hosts (256 addresses, 254 usable)
  • • Network address is the first address, broadcast is the last
  • • Usable hosts exclude network and broadcast addresses (except /31 and /32)

IP Subnetting - 技術的な詳細

Subnetting divides IP networks into smaller segments. CIDR notation (e.g., /24) indicates how many bits are used for the network portion. Understanding subnets is essential for network design and security.

コマンドラインでの代替方法

# Check your subnet on Linux/macOS\nip addr show  # Linux\nifconfig | grep netmask  # macOS\n\n# Calculate with ipcalc\nipcalc 192.168.1.0/24

参照

公式仕様を見る