{"id":23244,"date":"2026-09-07T15:49:25","date_gmt":"2026-09-07T07:49:25","guid":{"rendered":"https:\/\/cciedump.spoto.net\/blog\/?p=23244"},"modified":"2026-09-07T15:49:28","modified_gmt":"2026-09-07T07:49:28","slug":"the-subnet-mask-cheat-sheet-youll-actually-use","status":"publish","type":"post","link":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html","title":{"rendered":"The Subnet Mask Cheat Sheet You&#8217;ll Actually Use"},"content":{"rendered":"\n<p>Subnet masks are one of those things almost everyone in networking has to look up at some point, no matter how many times they&#8217;ve calculated one before \u2014 the difference between a <code>\/27<\/code> and a <code>\/28<\/code>, or what wildcard mask corresponds to <code>255.255.255.192<\/code>, just isn&#8217;t something most people carry around in working memory. This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks, compares how IPv4&#8217;s dotted-decimal masks relate to IPv6&#8217;s prefix lengths, points you to a calculator for quick real-world lookups, and covers the mental math shortcuts that make subnetting questions fast on exams like CCNA and Network+.<\/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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\/#How_to_Read_and_Calculate_a_Subnet_Mask_Table\" title=\"How to Read and Calculate a Subnet Mask Table\">How to Read and Calculate a Subnet Mask Table<\/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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\/#Full_Subnet_Mask_Cheat_Sheet_CIDR_Decimal_Mask_Wildcard_Mask_and_Hosts\" title=\"Full Subnet Mask Cheat Sheet: CIDR, Decimal Mask, Wildcard Mask, and Hosts\">Full Subnet Mask Cheat Sheet: CIDR, Decimal Mask, Wildcard Mask, and Hosts<\/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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\/#IPv4_Subnet_Masks_vs_IPv6_Prefix_Lengths\" title=\"IPv4 Subnet Masks vs. IPv6 Prefix Lengths\">IPv4 Subnet Masks vs. IPv6 Prefix Lengths<\/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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\/#Using_an_Online_Subnet_Mask_Calculator\" title=\"Using an Online Subnet Mask Calculator\">Using an Online Subnet Mask 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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\/#Subnetting_Shortcuts_for_CCNA_and_Network_Exams\" title=\"Subnetting Shortcuts for CCNA and Network+ Exams\">Subnetting Shortcuts for CCNA and Network+ Exams<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"How_to_Read_and_Calculate_a_Subnet_Mask_Table\"><\/span>How to Read and Calculate a Subnet Mask Table<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Before using a cheat sheet effectively, it helps to understand what each column actually represents and how the values are derived, rather than just memorizing them outright.<\/p>\n\n\n\n<ol><li><strong>A subnet mask marks which bits belong to the network vs. the host.<\/strong> In a 32-bit IPv4 address, the subnet mask uses binary <code>1<\/code>s to mark &#8220;network&#8221; bits and <code>0<\/code>s to mark &#8220;host&#8221; bits \u2014 <code>255.255.255.0<\/code> in binary is <code>11111111.11111111.11111111.00000000<\/code>, meaning the first 24 bits are network bits and the last 8 are host bits.<\/li><li><strong>CIDR notation is just a shorthand count of those network bits.<\/strong> Rather than writing out the full dotted-decimal mask, CIDR notation simply states how many bits are set to <code>1<\/code> \u2014 <code>255.255.255.0<\/code> and <code>\/24<\/code> describe the exact same mask, just in two different formats.<\/li><li><strong>Total addresses and usable hosts follow directly from the host bits.<\/strong> With <code>h<\/code> host bits remaining, the subnet contains 2^h total addresses. Two of those \u2014 the network address (all host bits set to <code>0<\/code>) and the broadcast address (all host bits set to <code>1<\/code>) \u2014 are reserved rather than assignable to a device, so usable hosts is 2^h minus 2 for any subnet larger than a <code>\/31<\/code>.<\/li><li><strong>A wildcard mask is the inverse of a subnet mask.<\/strong> Used primarily in Cisco ACL and OSPF configuration, a wildcard mask flips every bit of the subnet mask \u2014 where the subnet mask has a <code>1<\/code>, the wildcard mask has a <code>0<\/code>, and vice versa. In practice, this means subtracting each octet of the subnet mask from 255: a <code>255.255.255.0<\/code> subnet mask becomes a <code>0.0.0.255<\/code> wildcard mask.<\/li><li><strong>The pattern repeats predictably across every prefix length.<\/strong> Each additional network bit (moving from <code>\/24<\/code> to <code>\/25<\/code>, for instance) cuts the number of host bits by one, which halves both the total address count and the usable host count \u2014 this consistent doubling\/halving pattern is what makes the full cheat sheet below easy to sanity-check even if you forget one specific row.<\/li><\/ol>\n\n\n\n<p>With that logic in place, here&#8217;s the complete reference table applying it across every commonly used prefix length.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"Full_Subnet_Mask_Cheat_Sheet_CIDR_Decimal_Mask_Wildcard_Mask_and_Hosts\"><\/span>Full Subnet Mask Cheat Sheet: CIDR, Decimal Mask, Wildcard Mask, and Hosts<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">CIDR   Subnet Mask         Wildcard Mask        Total Addresses   Usable Hosts\n\/8     255.0.0.0           0.255.255.255        16,777,216        16,777,214\n\/16    255.255.0.0         0.0.255.255          65,536            65,534\n\/17    255.255.128.0       0.0.127.255          32,768            32,766\n\/18    255.255.192.0       0.0.63.255           16,384            16,382\n\/19    255.255.224.0       0.0.31.255           8,192             8,190\n\/20    255.255.240.0       0.0.15.255           4,096             4,094\n\/21    255.255.248.0       0.0.7.255            2,048             2,046\n\/22    255.255.252.0       0.0.3.255            1,024             1,022\n\/23    255.255.254.0       0.0.1.255            512               510\n\/24    255.255.255.0       0.0.0.255            256               254\n\/25    255.255.255.128     0.0.0.127            128               126\n\/26    255.255.255.192     0.0.0.63             64                62\n\/27    255.255.255.224     0.0.0.31             32                30\n\/28    255.255.255.240     0.0.0.15             16                14\n\/29    255.255.255.248     0.0.0.7              8                 6\n\/30    255.255.255.252     0.0.0.3              4                 2\n\/31    255.255.255.254     0.0.0.1              2                 0 (point-to-point link)\n\/32    255.255.255.255     0.0.0.0              1                 1 (single host route)<\/code><\/pre>\n\n\n\n<p>This table covers the prefix range used in the overwhelming majority of real-world subnetting \u2014 from large enterprise blocks down to individual point-to-point links \u2014 with the wildcard mask column included specifically for anyone working with Cisco access control lists or OSPF network statements, where the wildcard format is required rather than the standard subnet mask.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"IPv4_Subnet_Masks_vs_IPv6_Prefix_Lengths\"><\/span>IPv4 Subnet Masks vs. IPv6 Prefix Lengths<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>The same underlying concept \u2014 marking how many bits belong to the network \u2014 applies to IPv6, but the format and typical values look quite different given how much larger IPv6 addresses are.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th scope=\"col\">Factor<\/th><th scope=\"col\">IPv4 Subnet Mask<\/th><th scope=\"col\">IPv6 Prefix Length<\/th><\/tr><\/thead><tbody><tr><td><strong>Address length<\/strong><\/td><td>32 bits<\/td><td>128 bits<\/td><\/tr><tr><td><strong>Notation format<\/strong><\/td><td>Dotted-decimal (e.g., <code>255.255.255.0<\/code>) or CIDR (<code>\/24<\/code>)<\/td><td>CIDR-only (e.g., <code>\/64<\/code>) \u2014 dotted-decimal-style notation isn&#8217;t used<\/td><\/tr><tr><td><strong>Maximum prefix<\/strong><\/td><td>\/32<\/td><td>\/128<\/td><\/tr><tr><td><strong>Typical ISP customer allocation<\/strong><\/td><td>A single public address, or a small block<\/td><td>\/48 or \/56<\/td><\/tr><tr><td><strong>Standard subnet size<\/strong><\/td><td>Varies widely by need (see cheat sheet above)<\/td><td>\/64 is the near-universal standard for individual subnets<\/td><\/tr><tr><td><strong>Wildcard mask equivalent used in configuration<\/strong><\/td><td>Yes \u2014 common in Cisco ACLs and OSPF, as shown above<\/td><td>No standard wildcard mask equivalent in typical IPv6 configuration syntax<\/td><\/tr><tr><td><strong>Broadcast address concept<\/strong><\/td><td>Yes \u2014 reserved last address in each subnet<\/td><td>No \u2014 IPv6 has no broadcast address; multicast serves equivalent functions<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Why the difference in approach?<\/strong> IPv4&#8217;s address scarcity is what drove the detailed, closely-managed subnetting shown in the cheat sheet above \u2014 every bit matters when the total pool is only 4.3 billion addresses. IPv6&#8217;s address space is so large that standardizing almost every subnet at <code>\/64<\/code> (leaving 64 bits for host addressing alone) avoids the need for the same granular, size-conscious calculations IPv4 requires.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"Using_an_Online_Subnet_Mask_Calculator\"><\/span>Using an Online Subnet Mask Calculator<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>While the tables above cover the standard values, a calculator is often faster and less error-prone when working with a specific, real IP address rather than just a general reference.<\/p>\n\n\n\n<p><strong>What does a subnet mask calculator actually compute?<\/strong> Enter an IP address along with either a subnet mask or a CIDR prefix, and the tool returns the network address, broadcast address, first and last usable host addresses, and total\/usable host counts \u2014 all derived from the same logic covered in the &#8220;how to read a subnet mask table&#8221; section above, just applied instantly to your specific input.<\/p>\n\n\n\n<p><strong>Can a calculator convert an IP range directly into the correct subnet mask?<\/strong> Yes \u2014 most subnet calculators also support entering a starting and ending IP address and returning the smallest subnet mask (or CIDR prefix) that fully covers that range, which is useful when you know a network&#8217;s boundaries but need to determine or confirm the correct mask for it.<\/p>\n\n\n\n<p><strong>Do these tools also generate wildcard masks?<\/strong> Many do, particularly those aimed at Cisco networking audiences \u2014 since wildcard masks (covered earlier) are needed specifically for ACL and OSPF configuration, a calculator that outputs both the standard subnet mask and its wildcard equivalent side by side saves a manual conversion step.<\/p>\n\n\n\n<p><strong>When is the cheat sheet faster than a calculator?<\/strong> For standard, commonly used values you&#8217;re already partially familiar with, glancing at the cheat sheet is typically faster than opening a tool. A calculator becomes more valuable specifically when working with a real, non-round IP address and needing exact network boundaries rather than the general pattern.<\/p>\n\n\n\n<p>Having both the reference table and a calculator on hand covers the vast majority of real-world subnetting needs \u2014 but if you&#8217;re preparing for a certification exam, there&#8217;s a faster method than looking anything up at all, covered next.<\/p>\n\n\n\n<h2><span class=\"ez-toc-section\" id=\"Subnetting_Shortcuts_for_CCNA_and_Network_Exams\"><\/span>Subnetting Shortcuts for CCNA and Network+ Exams<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Certification exams like CCNA and Network+ are timed, which means recalculating subnet values from scratch for every question wastes precious minutes \u2014 these mental math shortcuts are built specifically to get you to the answer faster.<\/p>\n\n\n\n<ol><li><strong>Memorize the &#8220;magic number&#8221; (block size) pattern instead of the full mask.<\/strong> The magic number is simply 256 minus the interesting octet&#8217;s mask value \u2014 for a <code>255.255.255.192<\/code> mask (<code>\/26<\/code>), the magic number is <code>256 - 192 = 64<\/code>. This number tells you the size of each subnet block and lets you count subnet boundaries quickly (<code>0, 64, 128, 192<\/code>) without needing to convert to binary at all.<\/li><li><strong>Learn the CIDR-to-magic-number pairs for the most commonly tested masks.<\/strong> For the last octet: <code>\/25 = 128<\/code>, <code>\/26 = 64<\/code>, <code>\/27 = 32<\/code>, <code>\/28 = 16<\/code>, <code>\/29 = 8<\/code>, <code>\/30 = 4<\/code> \u2014 these six values cover the vast majority of subnetting questions on both CCNA and Network+ exams, and are worth memorizing outright rather than recalculating each time.<\/li><li><strong>Use the magic number to instantly find network and broadcast addresses.<\/strong> Once you know the magic number, the network address for any given host is the largest multiple of that number that&#8217;s less than or equal to the host&#8217;s address, and the broadcast address is one less than the next multiple \u2014 for a host at <code>192.168.1.150<\/code> with a <code>\/26<\/code> mask (magic number 64), the subnet boundaries are <code>128<\/code> and <code>192<\/code>, making the network address <code>192.168.1.128<\/code> and the broadcast address <code>192.168.1.191<\/code>.<\/li><li><strong>Practice counting in binary powers of two until it&#8217;s automatic.<\/strong> Since usable hosts always follow the 2^h &#8211; 2 pattern (covered in the &#8220;how to read&#8221; section above), being able to instantly recall that 2^6 = 64 or 2^4 = 16 without pausing to calculate saves meaningful time across a full subnetting-heavy exam section.<\/li><li><strong>For questions asking &#8220;how many subnets,&#8221; focus on the borrowed bits, not the whole mask.<\/strong> If a question gives you a default Class C mask and asks how many subnets result from borrowing 3 bits, the answer is simply 2\u00b3 = 8 \u2014 you don&#8217;t need to work out the full resulting subnet mask unless the question specifically asks for it.<\/li><li><strong>Write out the reference cheat sheet from memory before the exam starts, if allowed.<\/strong> Many candidates use permitted scratch space at the start of a timed exam to quickly jot down the CIDR-to-magic-number table from step 2 above, effectively recreating a condensed version of the cheat sheet in this article so it&#8217;s available for quick reference throughout the rest of the test.<\/li><li><strong>Time yourself practicing with random IP\/mask combinations.<\/strong> Since exam subnetting questions are usually more about speed than difficulty, repeated practice converting random addresses using the magic number method until it takes just a few seconds per question is the most reliable way to build real exam-day speed.<\/li><\/ol>\n\n\n\n<p>The magic number method above is really just a faster mental shortcut for the exact same host-and-network-bit logic explained at the start of this article \u2014 understanding why it works, rather than memorizing it as an isolated trick, is what makes it reliable under exam pressure rather than something you second-guess when a question phrases things slightly differently than expected.<\/p>\n\n\n\n<p>Between understanding the underlying bit math, having the full mask-and-wildcard reference table on hand, knowing how IPv6 changes the picture, using a calculator for real-world addresses, and mastering the magic number shortcut for exam speed, this cheat sheet and the reasoning behind it should cover essentially every subnet mask question you&#8217;re likely to run into, whether you&#8217;re configuring a live network or sitting a certification exam.<\/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-subnet-mask-cheat-sheet-youll-actually-use_23244.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+Subnet+Mask+Cheat+Sheet+You%26%238217%3Bll+Actually+Use+https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\",\"The Subnet Mask Cheat Sheet You&#8217;ll Actually Use\")' 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>Subnet masks are one of those things almost everyone in networking has to look up at some point, no matter how many times they&#8217;ve calculated one before \u2014 the difference between a \/27 and a \/28, or what wildcard mask corresponds to 255.255.255.192, just isn&#8217;t something most people carry around in working memory. This article&#8230; &raquo; <a class=\"read-more-link\" href=\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.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 Subnet Mask Cheat Sheet You&#039;ll Actually Use - SPOTO Official Blog<\/title>\n<meta name=\"description\" content=\"This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks\" \/>\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-subnet-mask-cheat-sheet-youll-actually-use_23244.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Subnet Mask Cheat Sheet You&#039;ll Actually Use - SPOTO Official Blog\" \/>\n<meta property=\"og:description\" content=\"This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html\" \/>\n<meta property=\"og:site_name\" content=\"SPOTO Official Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-07T07:49:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-07T07:49:28+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-subnet-mask-cheat-sheet-youll-actually-use_23244.html#webpage\",\"url\":\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html\",\"name\":\"The Subnet Mask Cheat Sheet You'll Actually Use - SPOTO Official Blog\",\"isPartOf\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#website\"},\"datePublished\":\"2026-09-07T07:49:25+00:00\",\"dateModified\":\"2026-09-07T07:49:28+00:00\",\"description\":\"This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks\",\"breadcrumb\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cciedump.spoto.net\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Subnet Mask Cheat Sheet You&#8217;ll Actually Use\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#webpage\"},\"author\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638\"},\"headline\":\"The Subnet Mask Cheat Sheet You&#8217;ll Actually Use\",\"datePublished\":\"2026-09-07T07:49:25+00:00\",\"dateModified\":\"2026-09-07T07:49:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#webpage\"},\"wordCount\":1557,\"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-subnet-mask-cheat-sheet-youll-actually-use_23244.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 Subnet Mask Cheat Sheet You'll Actually Use - SPOTO Official Blog","description":"This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks","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-subnet-mask-cheat-sheet-youll-actually-use_23244.html","og_locale":"en_US","og_type":"article","og_title":"The Subnet Mask Cheat Sheet You'll Actually Use - SPOTO Official Blog","og_description":"This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks","og_url":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html","og_site_name":"SPOTO Official Blog","article_published_time":"2026-09-07T07:49:25+00:00","article_modified_time":"2026-09-07T07:49:28+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-subnet-mask-cheat-sheet-youll-actually-use_23244.html#webpage","url":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html","name":"The Subnet Mask Cheat Sheet You'll Actually Use - SPOTO Official Blog","isPartOf":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#website"},"datePublished":"2026-09-07T07:49:25+00:00","dateModified":"2026-09-07T07:49:28+00:00","description":"This article explains how to actually read and calculate the values in a subnet mask table, gives you a complete printable-style cheat sheet including wildcard masks","breadcrumb":{"@id":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cciedump.spoto.net\/blog"},{"@type":"ListItem","position":2,"name":"The Subnet Mask Cheat Sheet You&#8217;ll Actually Use"}]},{"@type":"Article","@id":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#article","isPartOf":{"@id":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#webpage"},"author":{"@id":"https:\/\/cciedump.spoto.net\/blog\/#\/schema\/person\/25594d4796697ccb1ef63d55c269c638"},"headline":"The Subnet Mask Cheat Sheet You&#8217;ll Actually Use","datePublished":"2026-09-07T07:49:25+00:00","dateModified":"2026-09-07T07:49:28+00:00","mainEntityOfPage":{"@id":"https:\/\/cciedump.spoto.net\/blog\/the-subnet-mask-cheat-sheet-youll-actually-use_23244.html#webpage"},"wordCount":1557,"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-subnet-mask-cheat-sheet-youll-actually-use_23244.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\/23244"}],"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=23244"}],"version-history":[{"count":1,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/posts\/23244\/revisions"}],"predecessor-version":[{"id":23245,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/posts\/23244\/revisions\/23245"}],"wp:attachment":[{"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/media?parent=23244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/categories?post=23244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cciedump.spoto.net\/blog\/wp-json\/wp\/v2\/tags?post=23244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}