{"id":2685,"date":"2016-05-26T09:00:50","date_gmt":"2016-05-26T09:00:50","guid":{"rendered":"https:\/\/live-infoblox-blog.pantheonsite.io\/?p=2685"},"modified":"2022-10-20T10:33:39","modified_gmt":"2022-10-20T17:33:39","slug":"the-operational-trouble-with-the-ipv6-address-format","status":"publish","type":"post","link":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/","title":{"rendered":"The operational trouble with the IPv6 address format"},"content":{"rendered":"<p>One of the interesting aspects of my job in advocating, teaching, and implementing IPv6 is I get to experience firsthand some of the struggles that people have with IPv6. Because of how long I have been working with it, often these subtle points don\u2019t occur to me until I mention something in a presentation or technical training. These typically lead into a wide-ranging impromptu white boarding session about backing up my opinions on things or explaining what issues might actually come up that perhaps they had not considered.<\/p>\n<p>One of those commonly confusing topics is the actual IPv6 address format. There are some interesting stories around some of the reasoning for how the address format was chosen, how it was implemented, and some of the challenges it might present to a company trying to implement a dual-stack network today. I won\u2019t go into all the stories (there isn\u2019t enough room to do that!) but we will go into some of the operator challenges you might have to address.<\/p>\n<p>As a brief refresher, let\u2019s review the IPv6 address format itself. An IPv6 address is a 128 bits in length and is broken into eight 16-bit sections (which I call a quibble or quad-nibble with a nibble being 4-bits, technically it is a Hexadectet\u00a0 or hextet for short). When written down, the IPv6 address uses colons \u201c:\u201d between each of these quibbles to make it easier to see.\u00a0 It is far easier to show an address so we will use the documentation prefix range to build out some examples. In this first example, we will look at a global unicast address.<\/p>\n<p>2001:0db8:ddda:1eb4:0d49:9124:b9ba:bbf5<\/p>\n<p>The address above is an example of a fully expanded IPv6 address. It does not leverage removing leading zeros nor does it use zero compression. There is a hex character displayed for every nibble and the address is from the global unicast address range as defined by IANA\u00a0<a href=\"http:\/\/www.iana.org\/assignments\/ipv6-unicast-address-assignments\/ipv6-unicast-address-assignments.xhtml\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/www.iana.org\/assignments\/ipv6-unicast-address-assignments\/ipv6-unicast-address-assignments.xh&#8230;<\/a>. Because we don\u2019t have a continuous sequence of zeros in this example address, all we can implement from a simplified display point of view is to remove leading zeros. This would result in:<\/p>\n<p>2001:db8:ddda:1eb4:d49:9124:b9ba:bbf5<\/p>\n<p>Not particularly any easier or shorter (we only removed two nibbles) but technically those two address formats represent the exact same address.<\/p>\n<p>The other address you will have on every interface is a link-local address. All link-local addresses start with fe80:: (from the fe80::\/10 prefix reserved for link-local). The rightmost 64-bits are either randomly generated (what is commonly called a privacy address), deterministically generated using a method called modified EUI-64, or manually assigned. A common fully expanded link-local IPv6 address would look like:<\/p>\n<p>fe80:0000:0000:0000:c96f:5e94:48e4:943e<\/p>\n<p>Because we have a sequence of zeros we will leverage zero compression to condense the writing of the address. You can see that we\u2019ve used a double colon (:<img decoding=\"async\" id=\"smileyhappy\" class=\"emoticon emoticon-smileyhappy\" title=\"Smiley Happy\" src=\"https:\/\/cixhp49439.i.lithium.com\/i\/smilies\/16x16_smiley-happy.png\" alt=\"Smiley Happy\" \/>\u00a0to represent a continuous sequence of zeros as a placeholder for the nibbles we are leaving out. We can only use zero compression once in a given address. There is a bit of debate about if you have multiple sequences of zeros in an address which one you choose to do zero compression on. Truth be told, this comes down to a bit of personal preference and RFC 5952 (<a href=\"https:\/\/tools.ietf.org\/html\/rfc5952\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https:\/\/tools.ietf.org\/html\/rfc5952<\/a>). For networking teams who do some clever work with their addressing plans they may get some benefit of doing zero compression on their low-order prefix portion of the address. The recommendation is to do zero compression on the longest sequence of contiguous zeros but if you have equal sequences then to do the leftmost. In the example for link local, we almost always perform the zero compression on the prefix. So the link-local address in the example would end up as:<\/p>\n<p>fe80::c96f:5e94:48e4:943e<\/p>\n<p>It is not uncommon for networking teams to decide they would like to assign a manual value for the link-local address on networking devices. For instance, they can leverage zero compression to simplify the link-local addresses on routers. If we wanted to embed a router ID (RID) and a VLAN ID in a link-local address we could end up with something like:<\/p>\n<p>Router ID: 10<\/p>\n<p>VLAN ID: 145<\/p>\n<p>The manually configured link-local address options:<\/p>\n<p>fe80::a:91<\/p>\n<p>fe80::10:145<\/p>\n<p>As you can see, the address is a lot shorter and provides us with some useful information (embedded in the address). It can also come in handy making the IPv6 routing table next-hop addresses more meaningful and easier to troubleshoot.\u00a0 At the same time but there is an interesting dilemma from the two example addresses given.<\/p>\n<p>The first address fe80::a:91 is utilizing all hexadecimal representations of the decimal values of the router id and VLAN id. The second address fe80::10:145 is using decimal values in the last two quibbles. These are technically two different IPv6 addresses and while the second one is perhaps more readable for operators (which is a perfectly fine reason for using it) it technically isn\u2019t representing what you think it is and certainly is not the same as the first address at all. This is where format and operator standards are important for companies. You shouldn\u2019t have operators and designers using different methods of embedding information in IPv6 addresses without coordinating with each other. Consensus on all hexadecimal verse decimal, (where you mix the two), embedding IPv4 info, attempting to spell out names with hexadecimal characters, zero compression ordering and leading zero treatment should definitely be worked out in advance before you start implementing IPv6 throughout your . Remember, you should try and stick as close as practical to RFC 5952 to avoid issues with those that are following the standard. Have a really good reason for deviating and document why and realize you might have to work around it later.<\/p>\n<p>Hopefully this makes sense. This consensus is especially important if you have teams doing some sort of automation or using a regular expression to evaluate and do something with the information embedded in that IPv6 address. Even something as simple as deciding to embed IPv4 addresses in an IPv6 address (which I mostly advise against) you still have to choose: do you represent that address in hexadecimal or decimal format?<\/p>\n<p>Down the rabbit hole we go because now that we have worked out the simple stuff we get to tackle some more interesting format issues. If we switch gears and talk about how applications use IPv6 addresses and how we input them into common applications there are some interesting things that come up. Most of these issues are easier to talk about with examples so we will start with our old friend IPv4 first. For IPv4, we use a dot or period as a delimiter between octets. To describe the TCP or UDP port we would like to connect to, or run a service on, we use a different delimiter \u2013 and it happens to be a colon (<img decoding=\"async\" id=\"smileyhappy\" class=\"emoticon emoticon-smileyhappy\" title=\"Smiley Happy\" src=\"https:\/\/cixhp49439.i.lithium.com\/i\/smilies\/16x16_smiley-happy.png\" alt=\"Smiley Happy\" \/>. So in IPv6, how in the world do we differentiate between the address portion and the port portion of an address? The solution was to \u201cwrap\u201d the IPv6 address in square brackets and continue to use the colon as the port delimiter (<a href=\"https:\/\/tools.ietf.org\/html\/rfc6874\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">RFC 6874<\/a>). This makes for some very strange formatting.<\/p>\n<p>Example ! Assuming we were running a special web service on port 8080 on a server that was dual-stacked with an IPv4 address of 10.10.10.1 and an IPv6 address of 2001:db8::a:a:a:1 we would using the following values in our browser to connect to that webserver:<\/p>\n<p>IPv4 \u2013\u00a0<a href=\"http:\/\/10.10.10.1:8080\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/10.10.10.1:8080<\/a><\/p>\n<p>IPv6 \u2013\u00a0<a href=\"http:\/\/[2001db8::a:a:a:1]:8080\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/[2001:db8::a:a:a:1]:8080<\/a><\/p>\n<p>If we wanted to use a simple UNIX tool like curl to test our webserver our command syntax would look like:<\/p>\n<p>curl -4\u00a0<a href=\"http:\/\/127.0.0.1:8080\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/127.0.0.1:8080<\/a><\/p>\n<p>curl -4\u00a0<a href=\"http:\/\/10.10.10.1:8080\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/10.10.10.1:8080<\/a><\/p>\n<p>Compare the above to this:<\/p>\n<p>curl -6\u00a0<a href=\"http:\/\/[:1]:8080\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/[::1]:8080<\/a><\/p>\n<p>curl -6\u00a0<a href=\"http:\/\/[2001db8::a:a:a:1]:8080\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/[2001:db8::a:a:a:1]:8080<\/a><\/p>\n<p>Clearly, understanding and implementing these format differences for things like scripts is pretty important. If you miss enclosing an IPv6 address in square brackets there are many applications that will not understand what value is being passed to it and this will cause a failure.<\/p>\n<p>With this in mind, for many application developers, the question is how should they store the IPv4 or IPv6 values and how to display them? It is possible to represent all IPv4 addresses in IPv6 and we have a range actually allocated for that purpose. This prefix is ::ffff:0:0\/96 and the last two quibbles (32-bits) are where the IPv4 address in embedded This method allows developers to store all addresses, regardless of family type in a single method with 128 bits. Ideally, if you need to store an IPv6 address the safest way is to store it as a binary value that takes up 128 bits. Alternately, you could potentially use an integer. However, storing the address as a string presents a problem: do you store the leading zero\/zero compression value or the uncompressed version. Do you use upper case or lower case for the a-f characters in hex?<\/p>\n<p>The complexity of doing regular expression matching against IPv6 string values may be prone to lots of errors. Matching upper\/lower case is relatively easy to solve with regex, simply use the \/i (or, \u201cignore case\u201d) flag. But try to do matching when using a shortened IPv6 address and things start getting interesting. How do we account for missing leading zeros and zero compression? More importantly, how are systems like logging servers and monitoring systems doing address matching? In a dual-stack situation, is the IPv4 address being logged and matched as an IPv6 address or is it stored as a 32-bit value or string using a separate matching expression? This is why agreeing and understanding how your address data is represented, stored and analyzed is pretty important, even for supposedly simple things like a networking protocol.<\/p>\n<p>Believe it or not, there are additional things to consider around the format and display of IPv6. IPv4 is ubiquitous in our daily operations and we are very familiar with it. Until we build up the same skills and capabilities around IPv6 you might want to plan, coordinate and spend a bit more time thinking in detail around the address and its impacts on your operations.<\/p>\n<p>You can find me on twitter as\u00a0<a href=\"https:\/\/twitter.com\/ehorley\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">@ehorley<\/a>\u00a0and remember\u2026<\/p>\n<p>IPv6 is the future and the future is now!<\/p>\n<p>Ed<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the interesting aspects of my job in advocating, teaching, and implementing IPv6 is I get to experience firsthand some of the struggles that people have with IPv6. Because of how long I have been working with it, often these subtle points don\u2019t occur to me until I mention something in a presentation or [&hellip;]<\/p>\n","protected":false},"author":323,"featured_media":2686,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[17],"tags":[38],"class_list":{"0":"post-2685","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-ipv6-coe","8":"tag-ipv6","9":"entry"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>The operational trouble with the IPv6 address format<\/title>\n<meta name=\"description\" content=\"Compared to IPv4, the IPv6 address format is known to present more issues to users. Learn more about the troubles commonly associated with using IPv6 here.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The operational trouble with the IPv6 address format\" \/>\n<meta property=\"og:description\" content=\"Compared to IPv4, the IPv6 address format is known to present more issues to users. Learn more about the troubles commonly associated with using IPv6 here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/\" \/>\n<meta property=\"og:site_name\" content=\"Infoblox Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-05-26T09:00:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-20T17:33:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/The-operational-trouble-with-the-IPv6-address-format.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"660\" \/>\n\t<meta property=\"og:image:height\" content=\"454\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ed Horley\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ed Horley\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/\"},\"author\":{\"name\":\"Ed Horley\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/b09ec2fd0a273ea1cb94ae2fd98232f9\"},\"headline\":\"The operational trouble with the IPv6 address format\",\"datePublished\":\"2016-05-26T09:00:50+00:00\",\"dateModified\":\"2022-10-20T17:33:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/\"},\"wordCount\":1742,\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/The-operational-trouble-with-the-IPv6-address-format.jpg\",\"keywords\":[\"IPv6\"],\"articleSection\":[\"IPv6 CoE\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/\",\"name\":\"The operational trouble with the IPv6 address format\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/The-operational-trouble-with-the-IPv6-address-format.jpg\",\"datePublished\":\"2016-05-26T09:00:50+00:00\",\"dateModified\":\"2022-10-20T17:33:39+00:00\",\"description\":\"Compared to IPv4, the IPv6 address format is known to present more issues to users. Learn more about the troubles commonly associated with using IPv6 here.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/The-operational-trouble-with-the-IPv6-address-format.jpg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/The-operational-trouble-with-the-IPv6-address-format.jpg\",\"width\":660,\"height\":454,\"caption\":\"The operational trouble with the IPv6 address format\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/ipv6-coe\\\/the-operational-trouble-with-the-ipv6-address-format\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"IPv6 CoE\",\"item\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/category\\\/ipv6-coe\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The operational trouble with the IPv6 address format\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\",\"name\":\"infoblox.com\\\/blog\\\/\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\",\"name\":\"Infoblox\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/infoblox-logo-2.svg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/infoblox-logo-2.svg\",\"width\":137,\"height\":30,\"caption\":\"Infoblox\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/b09ec2fd0a273ea1cb94ae2fd98232f9\",\"name\":\"Ed Horley\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blogs.infoblox.com\\\/wp-content\\\/uploads\\\/blog-ed-horley-96x96.jpg\",\"url\":\"https:\\\/\\\/blogs.infoblox.com\\\/wp-content\\\/uploads\\\/blog-ed-horley-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/blogs.infoblox.com\\\/wp-content\\\/uploads\\\/blog-ed-horley-96x96.jpg\",\"caption\":\"Ed Horley\"},\"description\":\"Ed Horley (@ehorley) is a Co-founder and CEO of HexaBuild.io, an IPv6 consulting and training company. Ed is Co-chair of the California IPv6 Task Force (CAv6TF) and authored the Apress Press book Practical IPv6 for Windows Administrators and two IPv6 courses on Pluralsight. He is also the co-host of the IPv6 Buzz Podcast on the PacketPushers. Follow HexaBuild on Twitter and LinkedIn and let us help you advance cloud, IoT and security with IPv6!\",\"sameAs\":[\"https:\\\/\\\/hexabuild.io\"],\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/author\\\/ed-horley\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"The operational trouble with the IPv6 address format","description":"Compared to IPv4, the IPv6 address format is known to present more issues to users. Learn more about the troubles commonly associated with using IPv6 here.","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:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/","og_locale":"en_US","og_type":"article","og_title":"The operational trouble with the IPv6 address format","og_description":"Compared to IPv4, the IPv6 address format is known to present more issues to users. Learn more about the troubles commonly associated with using IPv6 here.","og_url":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/","og_site_name":"Infoblox Blog","article_published_time":"2016-05-26T09:00:50+00:00","article_modified_time":"2022-10-20T17:33:39+00:00","og_image":[{"width":660,"height":454,"url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/The-operational-trouble-with-the-IPv6-address-format.jpg","type":"image\/jpeg"}],"author":"Ed Horley","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ed Horley","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#article","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/"},"author":{"name":"Ed Horley","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/b09ec2fd0a273ea1cb94ae2fd98232f9"},"headline":"The operational trouble with the IPv6 address format","datePublished":"2016-05-26T09:00:50+00:00","dateModified":"2022-10-20T17:33:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/"},"wordCount":1742,"publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/The-operational-trouble-with-the-IPv6-address-format.jpg","keywords":["IPv6"],"articleSection":["IPv6 CoE"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/","url":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/","name":"The operational trouble with the IPv6 address format","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#primaryimage"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/The-operational-trouble-with-the-IPv6-address-format.jpg","datePublished":"2016-05-26T09:00:50+00:00","dateModified":"2022-10-20T17:33:39+00:00","description":"Compared to IPv4, the IPv6 address format is known to present more issues to users. Learn more about the troubles commonly associated with using IPv6 here.","breadcrumb":{"@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#primaryimage","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/The-operational-trouble-with-the-IPv6-address-format.jpg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/The-operational-trouble-with-the-IPv6-address-format.jpg","width":660,"height":454,"caption":"The operational trouble with the IPv6 address format"},{"@type":"BreadcrumbList","@id":"https:\/\/www.infoblox.com\/blog\/ipv6-coe\/the-operational-trouble-with-the-ipv6-address-format\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.infoblox.com\/blog\/"},{"@type":"ListItem","position":2,"name":"IPv6 CoE","item":"https:\/\/www.infoblox.com\/blog\/category\/ipv6-coe\/"},{"@type":"ListItem","position":3,"name":"The operational trouble with the IPv6 address format"}]},{"@type":"WebSite","@id":"https:\/\/www.infoblox.com\/blog\/#website","url":"https:\/\/www.infoblox.com\/blog\/","name":"infoblox.com\/blog\/","description":"","publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.infoblox.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.infoblox.com\/blog\/#organization","name":"Infoblox","url":"https:\/\/www.infoblox.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/infoblox-logo-2.svg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/infoblox-logo-2.svg","width":137,"height":30,"caption":"Infoblox"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/b09ec2fd0a273ea1cb94ae2fd98232f9","name":"Ed Horley","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blogs.infoblox.com\/wp-content\/uploads\/blog-ed-horley-96x96.jpg","url":"https:\/\/blogs.infoblox.com\/wp-content\/uploads\/blog-ed-horley-96x96.jpg","contentUrl":"https:\/\/blogs.infoblox.com\/wp-content\/uploads\/blog-ed-horley-96x96.jpg","caption":"Ed Horley"},"description":"Ed Horley (@ehorley) is a Co-founder and CEO of HexaBuild.io, an IPv6 consulting and training company. Ed is Co-chair of the California IPv6 Task Force (CAv6TF) and authored the Apress Press book Practical IPv6 for Windows Administrators and two IPv6 courses on Pluralsight. He is also the co-host of the IPv6 Buzz Podcast on the PacketPushers. Follow HexaBuild on Twitter and LinkedIn and let us help you advance cloud, IoT and security with IPv6!","sameAs":["https:\/\/hexabuild.io"],"url":"https:\/\/www.infoblox.com\/blog\/author\/ed-horley\/"}]}},"_links":{"self":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/2685","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/users\/323"}],"replies":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/comments?post=2685"}],"version-history":[{"count":2,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/2685\/revisions"}],"predecessor-version":[{"id":8142,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/2685\/revisions\/8142"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media\/2686"}],"wp:attachment":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media?parent=2685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/categories?post=2685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/tags?post=2685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}