Handy Dev Tools
Simple online tools for everyday tasks.

No favorites

    Base64 Encoder/Decoder
    Markdown to HTML
    HTML to Markdown
    URL Encoder/Decoder
    Unicode Escape Converter
    Unicode Encode/Decode
    SQL Formatter
    SQL Splitter
    JSON Formatter
    XML Formatter
    YAML Formatter
    GraphQL Formatter
    JSON to YAML Conversion
    YAML to JSON Conversion
    JSON to TOML Conversion
    TOML to JSON Conversion
    HTML Entity Encode/Decode
    TOML to YAML Conversion
    YAML to TOML Conversion
    CSV to SQL INSERT Conversion
    Markdown Table Generator
    JSON to XML Conversion
    XML to JSON Conversion
    UUID Generator
    ULID Generator
    Password Generator
    Hash Generator
    Lorem Ipsum Generator
    Lorem Picsum Image URL Generator
    Test Data Generator Tool
    QR Code Generator
    S3 Path Parser & Converter
    IP Address Calculator
    Subnet Split
    Subnet Consolidation
    CloudFront Signed URL Generator
    RDS Connection String Generator
    Coordinate Format Converter
    Geo Format Converter
    JWT Decoder & Parser
    Basic Auth
    Password Strength Analyzer
    Credit Card Validator
    RSA Key Pair Generator
    Case Conversion
    Romaji Conversion
    Roman Numeral Conversion
    Phonetic Code Conversion
    Character Counter
    Text Diff
    HTML Tag Remover
    Regex Tester
    Color Conversion
    Dice Roll
    Crontab generator
    Crontab parser
    Emoji Picker
    DateTime Converter
    HTTP Status Code Search
    Port Number Search
    MIME Type Lookup
    Base64 File Converter
    Image Base64 Encode/Decode
    JSON to XML Conversion
    XML to JSON Conversion
    User-Agent Parser
    URL Parser
    OGP Checker
    Commit Message Generator
    Chmod Calculator
    Terminal GIF Generator
Ctrl+K

Subnet Split

Split an original network into multiple subnets

Original Network
Subnet Count

How to use

About this tool

Splits an original network (CIDR notation) into multiple subnets. Supports three split methods (subnet count, required host count, new prefix length) and calculates and displays each subnet's network address, host range, broadcast address, and host count in real time. All calculations are done in the browser.

How to use

Enter the original network in CIDR notation (e.g., 192.168.1.0/24). Select a split method (specify by subnet count, specify by host count, or specify by new prefix length). Enter the parameter for the selected method (subnet count, host count, or prefix length). Results are displayed in a table in real time as you type. You can copy the results or download them as CSV.

Options

Original network: CIDR notation (e.g., 192.168.1.0/24). Split method: Specify by subnet count (enter subnet count), specify by host count (enter hosts per subnet), or specify by new prefix length (enter new prefix length). Results: Each subnet's No, network (CIDR notation), host range, broadcast, and host count are displayed in a table.

Use cases

β€’ Subnet splitting for network design β€’ Preparing for VLSM (Variable Length Subnet Mask) design (creating multiple subnets of the same size) β€’ Network segment design (determining subnet size from required hosts per segment) β€’ Router and switch configuration (checking network addresses and host ranges for each subnet) β€’ Network management (creating and documenting subnet lists)

How it works

Subnet splitting calculates each subnet's size and network address from the original network's prefix length and the new prefix length. When calculating new prefix length from subnet count: newPrefixLength = originalPrefixLength + Math.ceil(Math.log2(subnetCount)). When calculating from host count: newPrefixLength = 32 - Math.ceil(Math.log2(hostCount + 2)) (accounting for network and broadcast addresses). Each subnet's network address is calculated as original network address + (subnet number Γ— subnet size). All calculations are implemented with JavaScript bitwise operations and complete instantly in the browser.

Privacy and data

All calculations are done in the browser; no network information is sent to any server.