{"id":23240,"date":"2026-09-07T15:39:42","date_gmt":"2026-09-07T07:39:42","guid":{"rendered":"https:\/\/cciedump.spoto.net\/blog\/?p=23240"},"modified":"2026-09-07T15:39:45","modified_gmt":"2026-09-07T07:39:45","slug":"the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark","status":"publish","type":"post","link":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html","title":{"rendered":"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark"},"content":{"rendered":"\n<p>CIDR notation shows up everywhere in networking \u2014 from configuring a home router&#8217;s subnet to defining a cloud VPC&#8217;s address space \u2014 yet the slash number at the end of an IP address (like the <code>\/24<\/code> in <code>192.168.1.0\/24<\/code>) trips up even experienced administrators when they&#8217;re working outside their usual range of familiar values. This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length, compares how the same slash notation applies differently to IPv6, points you to a tool for quick calculations, and walks through how CIDR planning actually plays out when sizing subnets in AWS, Azure, or GCP.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_17 counter-hierarchy counter-decimal ez-toc-light-blue\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" style=\"display: none;\"><i class=\"ez-toc-glyphicon ez-toc-icon-toggle\"><\/i><\/a><\/span><\/div>\n<nav><ul class=\"ez-toc-list ez-toc-list-level-1\"><li class=\"ez-toc-page-1 ez-toc-heading-level-2\"><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\/#How_CIDR_Notation_Actually_Works\" title=\"How CIDR Notation Actually Works\">How CIDR Notation Actually Works<\/a><\/li><li class=\"ez-toc-page-1 ez-toc-heading-level-2\"><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\/#Full_CIDR_Notation_Cheat_Sheet_Prefix_Subnet_Mask_and_Host_Counts\" title=\"Full CIDR Notation Cheat Sheet: Prefix, Subnet Mask, and Host Counts\">Full CIDR Notation Cheat Sheet: Prefix, Subnet Mask, and Host Counts<\/a><\/li><li class=\"ez-toc-page-1 ez-toc-heading-level-2\"><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\/#IPv4_vs_IPv6_CIDR_Notation_Key_Differences\" title=\"IPv4 vs. IPv6 CIDR Notation: Key Differences\">IPv4 vs. IPv6 CIDR Notation: Key Differences<\/a><\/li><li class=\"ez-toc-page-1 ez-toc-heading-level-2\"><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\/#Quick_Answers_Using_an_Online_CIDR_Calculator\" title=\"Quick Answers: Using an Online CIDR Calculator\">Quick Answers: Using an Online CIDR Calculator<\/a><\/li><li class=\"ez-toc-page-1 ez-toc-heading-level-2\"><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\/#CIDR_Notation_Best_Practices_for_AWS_Azure_and_GCP_VPCs\" title=\"CIDR Notation Best Practices for AWS, Azure, and GCP VPCs\">CIDR Notation Best Practices for AWS, Azure, and GCP VPCs<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"How_CIDR_Notation_Actually_Works\"><\/span>How CIDR Notation Actually Works<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>CIDR (Classless Inter-Domain Routing) notation is a shorthand way of expressing an IP address along with its subnet mask, using a single number after a slash instead of writing out the full mask separately.<\/p>\n\n\n\n<ol><li><strong>The slash number represents bits, not a mask directly.<\/strong> In <code>192.168.1.0\/24<\/code>, the <code>\/24<\/code> means the first 24 bits of the 32-bit IPv4 address are fixed as the &#8220;network&#8221; portion, while the remaining bits are available for individual host addresses on that network.<\/li><li><strong>A subnet mask is really just those same bits expressed differently.<\/strong> Converting <code>\/24<\/code> into a traditional subnet mask means setting the first 24 bits to <code>1<\/code> and the rest to <code>0<\/code>: <code>11111111.11111111.11111111.00000000<\/code>, which translates to the familiar <code>255.255.255.0<\/code>.<\/li><li><strong>Fewer network bits mean more available host addresses.<\/strong> A <code>\/24<\/code> reserves 24 bits for the network, leaving 8 bits (2\u2078 = 256 total addresses) for hosts. A <code>\/16<\/code>, by contrast, reserves only 16 bits for the network, leaving 16 bits (2\u00b9\u2076 = 65,536 total addresses) for hosts \u2014 a smaller slash number always means a larger network.<\/li><li><strong>Two addresses in every subnet are reserved, not usable by hosts.<\/strong> The very first address in a range is the network address (identifying the subnet itself), and the very last is the broadcast address (used to send data to every device on that subnet at once) \u2014 which is why usable host counts are always the total address count minus 2, for any subnet size larger than a <code>\/31<\/code>.<\/li><li><strong>CIDR notation replaced the older classful system for a reason.<\/strong> Before CIDR, networks were assigned in fixed-size blocks (Class A, B, or C), which wasted enormous amounts of address space. CIDR allows a network to be sized to exactly what&#8217;s needed \u2014 a <code>\/27<\/code> for a small branch office, a <code>\/22<\/code> for a larger headquarters \u2014 rather than being forced into one of three rigid sizes.<\/li><\/ol>\n\n\n\n<p>With the underlying logic in place \u2014 fewer network bits reserved means more hosts available \u2014 the actual values for every possible prefix length are worth having on hand as a single reference, which is exactly what the chart below provides.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"Full_CIDR_Notation_Cheat_Sheet_Prefix_Subnet_Mask_and_Host_Counts\"><\/span>Full CIDR Notation Cheat Sheet: Prefix, Subnet Mask, and Host Counts<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">CIDR    Subnet Mask          Total Addresses     Usable Hosts\n\/1      128.0.0.0            2,147,483,648       2,147,483,646\n\/2      192.0.0.0            1,073,741,824       1,073,741,822\n\/4      240.0.0.0            268,435,456         268,435,454\n\/8      255.0.0.0            16,777,216          16,777,214\n\/9      255.128.0.0          8,388,608           8,388,606\n\/10     255.192.0.0          4,194,304           4,194,302\n\/12     255.240.0.0          1,048,576           1,048,574\n\/16     255.255.0.0          65,536              65,534\n\/17     255.255.128.0        32,768              32,766\n\/18     255.255.192.0        16,384              16,382\n\/19     255.255.224.0        8,192               8,190\n\/20     255.255.240.0        4,096               4,094\n\/21     255.255.248.0        2,048               2,046\n\/22     255.255.252.0        1,024               1,022\n\/23     255.255.254.0        512                 510\n\/24     255.255.255.0        256                 254\n\/25     255.255.255.128      128                 126\n\/26     255.255.255.192      64                  62\n\/27     255.255.255.224      32                  30\n\/28     255.255.255.240      16                  14\n\/29     255.255.255.248      8                   6\n\/30     255.255.255.252      4                   2\n\/31     255.255.255.254      2                   0 (point-to-point link, no usable hosts by traditional rule)\n\/32     255.255.255.255      1                   1 (single host route)<\/code><\/pre>\n\n\n\n<p>This chart covers the ranges most commonly referenced in day-to-day networking; every prefix length from <code>\/1<\/code> to <code>\/32<\/code> follows the same doubling\/halving pattern shown above \u2014 each step down in usable hosts corresponds to exactly one more bit reserved for the network portion, and vice versa.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"IPv4_vs_IPv6_CIDR_Notation_Key_Differences\"><\/span>IPv4 vs. IPv6 CIDR Notation: Key Differences<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>The same slash notation is used for IPv6 addresses, but because IPv6 addresses are 128 bits long rather than 32, the numbers involved \u2014 and the typical prefix lengths used in practice \u2014 look quite different.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th scope=\"col\">Factor<\/th><th scope=\"col\">IPv4 CIDR<\/th><th scope=\"col\">IPv6 CIDR<\/th><\/tr><\/thead><tbody><tr><td><strong>Total address length<\/strong><\/td><td>32 bits<\/td><td>128 bits<\/td><\/tr><tr><td><strong>Maximum prefix length<\/strong><\/td><td>\/32 (single host)<\/td><td>\/128 (single host)<\/td><\/tr><tr><td><strong>Typical smallest allocated subnet<\/strong><\/td><td>\/30 or \/31 for point-to-point links<\/td><td>\/64 \u2014 the standard subnet size for virtually all IPv6 networks<\/td><\/tr><tr><td><strong>Common ISP allocation to customers<\/strong><\/td><td>A single public IP, or occasionally a small block<\/td><td>\/48 or \/56, providing many \/64 subnets to work with<\/td><\/tr><tr><td><strong>Reserved network\/broadcast addresses<\/strong><\/td><td>Yes \u2014 first and last addresses of a subnet are reserved, as covered above<\/td><td>No broadcast address concept in IPv6; the first address in a \/64 is typically reserved but there&#8217;s no broadcast equivalent<\/td><\/tr><tr><td><strong>Prefix flexibility in practice<\/strong><\/td><td>Highly variable, from \/8 to \/30 depending on need<\/td><td>Standardized almost universally around \/64 for individual subnets, regardless of actual host count<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Why does IPv6 standardize so heavily around \/64?<\/strong> Unlike IPv4, where administrators carefully size a subnet to match expected host count (as shown in the cheat sheet above) due to address scarcity, IPv6&#8217;s address space is so vast that a <code>\/64<\/code> subnet \u2014 containing roughly 18 quintillion addresses \u2014 is used almost universally regardless of how many devices will actually be on it, since there&#8217;s no practical benefit to conserving IPv6 address space the way there is with IPv4.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"Quick_Answers_Using_an_Online_CIDR_Calculator\"><\/span>Quick Answers: Using an Online CIDR Calculator<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Manually working through the cheat sheet and bit math above is useful for understanding the logic, but for a fast, error-free result \u2014 especially with an unusual or unfamiliar prefix \u2014 an online CIDR calculator is often the more practical choice.<\/p>\n\n\n\n<p><strong>What does a CIDR calculator actually do?<\/strong> Enter an IP address and CIDR prefix (like <code>10.20.30.0\/22<\/code>), and the tool instantly returns the subnet mask, the network address, the broadcast address, the first and last usable host addresses, and the total number of usable hosts \u2014 everything covered manually in the earlier sections, calculated automatically.<\/p>\n\n\n\n<p><strong>Can these tools work in reverse, converting an IP range into a CIDR block?<\/strong> Yes \u2014 many calculators also support entering a starting and ending IP address and returning the smallest CIDR block (or set of blocks) that covers that exact range, which is useful when documenting an existing network whose boundaries you already know but whose CIDR notation you don&#8217;t.<\/p>\n\n\n\n<p><strong>Are these calculators accurate for both IPv4 and IPv6?<\/strong> Most modern CIDR calculators support both, though it&#8217;s worth confirming a specific tool explicitly handles IPv6&#8217;s 128-bit addressing and larger prefix range (as detailed in the comparison above) rather than being built for IPv4 only.<\/p>\n\n\n\n<p><strong>When is a calculator more useful than the cheat sheet above?<\/strong> The cheat sheet is fastest for quickly recalling standard values you already have memorized or nearly memorized; a calculator becomes more valuable when working with a specific, real IP address and needing the exact network and broadcast addresses for that address rather than just the general host-count pattern.<\/p>\n\n\n\n<p>Understanding both the manual math and having a calculator on hand covers most day-to-day subnetting tasks \u2014 but CIDR planning takes on an additional layer of practical consideration once you move into sizing address blocks for cloud infrastructure.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"CIDR_Notation_Best_Practices_for_AWS_Azure_and_GCP_VPCs\"><\/span>CIDR Notation Best Practices for AWS, Azure, and GCP VPCs<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Setting up a Virtual Private Cloud (VPC) requires choosing a CIDR block up front, and getting the sizing right matters more in the cloud than on a traditional local network, since resizing later is often disruptive or impossible without significant rework.<\/p>\n\n\n\n<ol><li><strong>Choose a VPC CIDR block larger than you think you&#8217;ll need.<\/strong> A common recommendation is starting with a <code>\/16<\/code> for the overall VPC (65,536 addresses, as shown in the cheat sheet earlier), even if current needs are modest \u2014 this leaves substantial room for future subnets without needing to recreate the VPC entirely.<\/li><li><strong>Use private IP ranges reserved for internal networking.<\/strong> Cloud VPCs are built using the same RFC 1918 private ranges used in traditional on-premises networking (such as <code>10.0.0.0\/8<\/code> or <code>172.16.0.0\/12<\/code>), since a VPC&#8217;s address space isn&#8217;t meant to be directly exposed to the public internet.<\/li><li><strong>Divide the VPC into smaller subnets by availability zone and purpose.<\/strong> Within your <code>\/16<\/code> VPC block, typical practice is carving out <code>\/24<\/code> subnets (256 addresses each, as shown in the cheat sheet) for each availability zone and tier \u2014 for example, a separate <code>\/24<\/code> for public-facing web servers and another for private database instances in each zone.<\/li><li><strong>Avoid overlapping CIDR ranges across VPCs you may need to connect.<\/strong> If there&#8217;s any chance two VPCs will later be connected via peering, a VPN, or a Transit Gateway\/Virtual WAN, using non-overlapping CIDR blocks from the start avoids a painful re-addressing project later \u2014 this is one of the most common cloud networking mistakes.<\/li><li><strong>Reserve some subnet ranges for future expansion.<\/strong> Rather than allocating every \/24 in your \/16 block immediately, leave gaps in your numbering scheme (for example, skipping from <code>10.0.1.0\/24<\/code> to <code>10.0.10.0\/24<\/code> for a new zone) so you can insert additional subnets later without renumbering existing ones.<\/li><li><strong>Account for cloud-provider-reserved addresses within each subnet.<\/strong> AWS, for instance, reserves 5 addresses in every subnet for internal networking purposes (beyond the standard network and broadcast addresses covered earlier in this article), meaning a <code>\/24<\/code> subnet in AWS provides 251 usable addresses rather than the 254 shown in the general cheat sheet \u2014 a detail worth accounting for specifically when sizing cloud subnets, even though the underlying CIDR math is identical to any other network.<\/li><li><strong>Match subnet size to actual workload, not convenience.<\/strong> While <code>\/24<\/code> is a common default, resource-heavy tiers (such as an auto-scaling group expected to grow significantly) may warrant a larger <code>\/22<\/code> or <code>\/23<\/code> subnet, while small, fixed-purpose tiers (like a NAT gateway subnet) can often use a much smaller <code>\/28<\/code> without issue.<\/li><\/ol>\n\n\n\n<p>The core math behind all of these recommendations is exactly the same CIDR logic covered throughout this article \u2014 the cloud-specific considerations are really about planning ahead for scale and avoiding future conflicts, not a different subnetting system.<\/p>\n\n\n\n<p>Between understanding the underlying bit math, having the full prefix-to-host-count chart on hand, knowing how IPv6 changes the typical numbers involved, using a calculator for quick real-world lookups, and applying all of it to cloud VPC planning, this cheat sheet and the reasoning behind it should cover the vast majority of CIDR notation questions you&#8217;ll run into in day-to-day networking work.<\/p>\n<div class='sfsi_Sicons' style='width: 100%; display: inline-block; vertical-align: middle; text-align:left'><div style='margin:0px 8px 0px 0px; line-height: 24px'><span>Please follow and like us:<\/span><\/div><div class='sfsi_socialwpr'><div class='sf_fb_share sf_icon' style='text-align:left;vertical-align: middle;'><a href='https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcciedump.spoto.net%2Fblog%2Fthe-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html' style='display:inline-block;'  > <img class='sfsi_wicon'  data-pin-nopin='true' width='auto' height='auto' alt='fb-share-icon' title='Facebook Share' src='https:\/\/cciedump.spoto.net\/blog\/wp-content\/plugins\/ultimate-social-media-icons\/images\/visit_icons\/fbshare_bck.png'  \/><\/a><\/div><div class='sf_twiter sf_icon' style='display: inline-block;vertical-align: middle;width: auto;margin-left: 7px;'>\r\n\t\t\t\t\t\t<a target='_blank' href='https:\/\/twitter.com\/intent\/tweet?text=The+CIDR+Notation+Cheat+Sheet+Every+Network+Admin+Should+Bookmark+https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html'style='display:inline-block' >\r\n\t\t\t\t\t\t\t<img data-pin-nopin= true width='auto' class='sfsi_wicon' src='https:\/\/cciedump.spoto.net\/blog\/wp-content\/plugins\/ultimate-social-media-icons\/images\/visit_icons\/en_US_Tweet.svg' alt='Tweet' title='Tweet' >\r\n\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t<\/div><div class='sf_pinit sf_icon' style='text-align:left;vertical-align: middle;float:left;line-height: 33px;width:auto;margin: 0 -2px;'><a href='#'  onclick='sfsi_pinterest_modal_images(event,\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\",\"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark\")' style='display:inline-block;'  > <img class='sfsi_wicon'  data-pin-nopin='true' width='auto' height='auto' alt='fb-share-icon' title='Pin Share' src='https:\/\/cciedump.spoto.net\/blog\/wp-content\/plugins\/ultimate-social-media-icons\/images\/share_icons\/Pinterest_Save\/en_US_save.svg'  \/><\/a><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>CIDR notation shows up everywhere in networking \u2014 from configuring a home router&#8217;s subnet to defining a cloud VPC&#8217;s address space \u2014 yet the slash number at the end of an IP address (like the \/24 in 192.168.1.0\/24) trips up even experienced administrators when they&#8217;re working outside their usual range of familiar values. This article&#8230; &raquo; <a class=\"read-more-link\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\">read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark - SPOTO Official Blog<\/title>\n<meta name=\"description\" content=\"This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark - SPOTO Official Blog\" \/>\n<meta property=\"og:description\" content=\"This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\" \/>\n<meta property=\"og:site_name\" content=\"SPOTO Official Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-07T07:39:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-07T07:39:45+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"SPOTO Club\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#website\",\"url\":\"https:\/\/cciedump.spoto.net\/blog\/\",\"name\":\"SPOTO Official Blog\",\"description\":\"Focus on Online IT Training for 20+ Years\",\"publisher\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cciedump.spoto.net\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#webpage\",\"url\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\",\"name\":\"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark - SPOTO Official Blog\",\"isPartOf\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#website\"},\"datePublished\":\"2026-09-07T07:39:42+00:00\",\"dateModified\":\"2026-09-07T07:39:45+00:00\",\"description\":\"This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length\",\"breadcrumb\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cciedump.spoto.net\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#webpage\"},\"author\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638\"},\"headline\":\"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark\",\"datePublished\":\"2026-09-07T07:39:42+00:00\",\"dateModified\":\"2026-09-07T07:39:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#webpage\"},\"wordCount\":1511,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638\"},\"articleSection\":[\"all\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#respond\"]}]},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638\",\"name\":\"SPOTO Club\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/cciedump.spoto.net\/blog\/wp-content\/uploads\/2020\/03\/spoto-facemask-96x96.jpg\",\"contentUrl\":\"https:\/\/cciedump.spoto.net\/blog\/wp-content\/uploads\/2020\/03\/spoto-facemask-96x96.jpg\",\"caption\":\"SPOTO Club\"},\"logo\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#personlogo\"},\"description\":\"SPOTO is an excellent leader in IT certification training for 20+ years. We offer 100% real Cisco CCNA, CCNP exam dumps, CCIE Lab study materials, PMP, CISA, CISM, AWS, Palo Alto, and other IT exam dumps. We have helped thousands of candidates around the world to pass their IT exams on the first try! As the first-class online IT training organization in China, SPOTO cooperates with many giant Internet companies in China like Tencent, Baidu, and Alibaba. What\u2019s more, we have won lots of awards in IT education training such as \u201cTop Ten Influential Brands In Online Education Industry\u201d given by Baidu, \u201cOfficial IT Online Training Organization\u201d awarded by Tencent Class, etc. Join us: https:\/\/cciedump.spoto.net\/ Contact us: E-mail: support@spoto.net Phone \/ WhatsApp: +86 18344981205\",\"sameAs\":[\"https:\/\/cciedump.spoto.net\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark - SPOTO Official Blog","description":"This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html","og_locale":"en_US","og_type":"article","og_title":"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark - SPOTO Official Blog","og_description":"This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length","og_url":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html","og_site_name":"SPOTO Official Blog","article_published_time":"2026-09-07T07:39:42+00:00","article_modified_time":"2026-09-07T07:39:45+00:00","twitter_card":"summary_large_image","twitter_misc":{"Written by":"SPOTO Club","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/cciedump.spoto.net\/blog\/#website","url":"https:\/\/cciedump.spoto.net\/blog\/","name":"SPOTO Official Blog","description":"Focus on Online IT Training for 20+ Years","publisher":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cciedump.spoto.net\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#webpage","url":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html","name":"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark - SPOTO Official Blog","isPartOf":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#website"},"datePublished":"2026-09-07T07:39:42+00:00","dateModified":"2026-09-07T07:39:45+00:00","description":"This article breaks down exactly how CIDR notation works and why, gives you a complete printable-style cheat sheet covering every prefix length","breadcrumb":{"@id":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cciedump.spoto.net\/blog"},{"@type":"ListItem","position":2,"name":"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark"}]},{"@type":"Article","@id":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#article","isPartOf":{"@id":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#webpage"},"author":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638"},"headline":"The CIDR Notation Cheat Sheet Every Network Admin Should Bookmark","datePublished":"2026-09-07T07:39:42+00:00","dateModified":"2026-09-07T07:39:45+00:00","mainEntityOfPage":{"@id":"https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#webpage"},"wordCount":1511,"commentCount":0,"publisher":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638"},"articleSection":["all"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cciedump.spoto.net\/blog\/the-cidr-notation-cheat-sheet-every-network-admin-should-bookmark_23240.html#respond"]}]},{"@type":["Person","Organization"],"@id":"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638","name":"SPOTO Club","image":{"@type":"ImageObject","@id":"https:\/\/cciedump.spoto.net\/blog\/#personlogo","inLanguage":"en-US","url":"https:\/\/cciedump.spoto.net\/blog\/wp-content\/uploads\/2020\/03\/spoto-facemask-96x96.jpg","contentUrl":"https:\/\/cciedump.spoto.net\/blog\/wp-content\/uploads\/2020\/03\/spoto-facemask-96x96.jpg","caption":"SPOTO Club"},"logo":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#personlogo"},"description":"SPOTO is an excellent leader in IT certification training for 20+ years. We offer 100% real Cisco CCNA, CCNP exam dumps, CCIE Lab study materials, PMP, CISA, CISM, AWS, Palo Alto, and other IT exam dumps. We have helped thousands of candidates around the world to pass their IT exams on the first try! As the first-class online IT training organization in China, SPOTO cooperates with many giant Internet companies in China like Tencent, Baidu, and Alibaba. What\u2019s more, we have won lots of awards in IT education training such as \u201cTop Ten Influential Brands In Online Education Industry\u201d given by Baidu, \u201cOfficial IT Online Training Organization\u201d awarded by Tencent Class, etc. Join us: https:\/\/cciedump.spoto.net\/ Contact us: E-mail: support@spoto.net Phone \/ WhatsApp: +86 18344981205","sameAs":["https:\/\/cciedump.spoto.net\/"]}]}},"_links":{"self":[{"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/posts\/23240"}],"collection":[{"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/comments?post=23240"}],"version-history":[{"count":1,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/posts\/23240\/revisions"}],"predecessor-version":[{"id":23241,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/posts\/23240\/revisions\/23241"}],"wp:attachment":[{"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/media?parent=23240"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/categories?post=23240"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/tags?post=23240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}