{"id":495,"date":"2022-09-19T12:36:26","date_gmt":"2022-09-19T12:36:26","guid":{"rendered":"https:\/\/black.host\/hc\/?p=495"},"modified":"2024-11-15T16:37:49","modified_gmt":"2024-11-15T16:37:49","slug":"enabling-ipv6-on-ubuntu-22-04-with-netplan","status":"publish","type":"post","link":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/","title":{"rendered":"Enabling IPv6 on Ubuntu 22.04 with Netplan"},"content":{"rendered":"\n<p>Welcome to another one of our Ubuntu guides. This guide will show you how to manually configure a static IPv6 address on your Ubuntu 22.04 VPS server.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 counter-flat ez-toc-counter ez-toc-black ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<span class=\"ez-toc-title-toggle\"><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#Adding_a_static_IPv6_address_on_Ubuntu_2204\" >Adding a static IPv6 address on Ubuntu 22.04<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#Looking_for_IPv6_ready_VPS_servers\" >Looking for IPv6 ready VPS servers?<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#How_to_add_additional_IPv6_addresses\" >How to add additional IPv6 addresses?<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#Removing_an_additional_IPv6_address\" >Removing an additional IPv6 address<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\" id=\"h-adding-an-ipv6-address-on-ubuntu-22-04\"><span class=\"ez-toc-section\" id=\"Adding_a_static_IPv6_address_on_Ubuntu_2204\"><\/span>Adding a static IPv6 address on Ubuntu 22.04<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>By default, Ubuntu 22.04 comes with out-of-the-box support for IPv6, so the only thing you will need to do is to configure your VPS by modifying its netplan configuration. To start, you will need to find your allocated subnet \/64, and most hosting providers have the allocated IPs and subnets displayed on the VPS service page or provided on the initial VPS activation email. Once you have found the subnet, you will also need to know the gateway and, in most cases, be on the first \/128 of the subnet. For example, most of our subnets start off as:<\/p>\n\n\n\n\t\t\t<div class=\"tags p-y-2 similar-posts mt-5\">\n\t\t\t\t<div>\n\t\t\t\t\t<p class=\"title\">Not using Ubuntu 22.04<\/p>\n\t\t\t\t\t<p>Choose a different version or distribution.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"custom-select\">\n\t\t\t\t\t<div class=\"selected\">Ubuntu 22.04<\/div>\n\t\t\t\t\t<div class=\"list\"><div><a href=\"https:\/\/black.host\/hc\/vps-hosting\/how-to-setup-ipv6-on-ubuntu-20-04-with-netplan\/\">Ubuntu 20.04<\/a><\/div><div><a href=\"https:\/\/black.host\/hc\/ipv6\/setting-up-ipv6-on-ubuntu-24-04-with-netplan\/\">Ubuntu 24.04<\/a><\/div><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">2a07:85XX::1<\/code><\/pre>\n\n\n\n<p>Now that you have this information you can edit your netplan configuration file. Netplan reads the configuration files from:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">\/etc\/netplan\/<\/code><\/pre>\n\n\n\n<p>Our Ubuntu 22.04 templates already have DHCP configuration for IPv4 in&nbsp;<code>00-interfaces.yaml<\/code>&nbsp;so you can start adding the following configuration parameters:<\/p>\n\n\n\n<pre title=\"\/etc\/netplan\/00-interfaces.yaml\" class=\"wp-block-code\"><code lang=\"yaml\" class=\"language-yaml\">network:\n    version: 2\n    ethernets:\n      ens3:\n        dhcp4: true\n        dhcp6: no\n        addresses:\n            - 2a07:85XX:0:XXX::2\/64\n        accept-ra: true\n        nameservers:\n            addresses:\n                - 1.1.1.1\n                - 8.8.8.8\n                - 2606:4700:4700::1111\n                - 2001:4860:4860::8888\n        routes:\n            - to: default\n              via: 2a07:85XX::1\n              metric: 1\n              on-link: true<\/code><\/pre>\n\n\n\n<p>Now we need to run <code>netplan apply<\/code> so the changes we made to the file can be applied. <\/p>\n\n\n\n<p>Once this is done, we need to make our IP reachable around the globe, for that we will need to advertise your IPv6 address on our network with the neighbour solicitation protocol, this can be done by running a simple ping command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">ping -6 black.host<\/code><\/pre>\n\n\n\n<p>Now you have a working IPv6 address.<\/p>\n\n\n\n<figure class=\"wp-block-pullquote protip\"><blockquote><p>Make sure that you have the latest version of ping utility: \n<code>apt install iputils-ping<\/code><\/p><\/blockquote><\/figure>\n\n\n\n\t\t\t\t<section class=\"content-blocker\">\n\t\t\t\t\t<div class=\"content-blocker-wrapper\">\n\t\t\t\t\t\t<div class=\"bg\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" version=\"1.1\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xmlns:svgjs=\"http:\/\/svgjs.dev\/svgjs\" viewBox=\"0 0 800 800\" opacity=\"1\"><defs><filter id=\"bbblurry-filter\" x=\"-100%\" y=\"-100%\" width=\"400%\" height=\"400%\" filterUnits=\"objectBoundingBox\" primitiveUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\n\t\t\t\t\t\t\t\t<feGaussianBlur stdDeviation=\"114\" x=\"0%\" y=\"0%\" width=\"100%\" height=\"100%\" in=\"SourceGraphic\" edgeMode=\"none\" result=\"blur\"><\/feGaussianBlur><\/filter><\/defs><g filter=\"url(#bbblurry-filter)\"><ellipse rx=\"277.5\" ry=\"277.5\" cx=\"228.83887677417374\" cy=\"623.1159188635062\" fill=\"hsla(251, 85%, 11%, 1.00)\"><\/ellipse><ellipse rx=\"277.5\" ry=\"277.5\" cx=\"612.2225848279394\" cy=\"268.81642588434374\" fill=\"hsla(236, 85%, 22%, 1.00)\"><\/ellipse><ellipse rx=\"277.5\" ry=\"277.5\" cx=\"181.2731483020084\" cy=\"107.45948208314587\" fill=\"hsla(189, 76%, 20%, .2)\"><\/ellipse><ellipse rx=\"277.5\" ry=\"277.5\" cx=\"728.197217851409\" cy=\"797.2737217448769\" fill=\"hsla(189, 100%, 50%, 0.41)\"><\/ellipse><\/g>\n\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"bg image with_contrast\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/black.host\/hc\/wp-content\/themes\/blackhost_kb_v1\/assets\/images\/header\/bg2.jpeg\" \/>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"content row middle-xs\">\n\t\t\t\t\t\t\t<div class=\"col-xs-12 col-sm-6 col-lg-8\">\n\t\t\t\t\t\t\t\t<h2><span class=\"ez-toc-section\" id=\"Looking_for_IPv6_ready_VPS_servers\"><\/span>Looking for IPv6 ready VPS servers?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"col-xs-12 col-sm-6 col-lg-4 image-wrap\">\n\t\t\t\t\t\t\t\t<div class=\"text-right\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/black.host\/unmetered-vps-hosting?utm_source=internal&amp;utm_medium=IPv6_banner&amp;utm_campaign=IPv6&amp;utm_id=HC\" target=\"_blank\" class=\"btn primary\">GET YOUR VPS<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t\t\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-add-additional-ipv6-addresses\"><span class=\"ez-toc-section\" id=\"How_to_add_additional_IPv6_addresses\"><\/span>How to add additional IPv6 addresses?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>If you wish to add more IPv6 addresses, you need to add each additional IP under the first IP address that we previously added, like in the example below:<\/p>\n\n\n\n<pre title=\"\/etc\/netplan\/00-interfaces.yaml\" class=\"wp-block-code\"><code lang=\"yaml\" class=\"language-yaml\">...\n            addresses:\n                - 2a07:85XX:0:XXX::4\/64\n                - 2a07:85XX:0:XXX::6\/64\n                - 2a07:85XX:0:XXX::8\/64\n...<\/code><\/pre>\n\n\n\n<p>Once you have edited the file you need to apply the changes again, and then announce the added IPs using the ping command while specifying the outgoing interface and IP address as in the following example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">ping -6 -I 2a07:85XX:0:XXX::4 black.host<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-removing-an-additional-ipv6-address\"><span class=\"ez-toc-section\" id=\"Removing_an_additional_IPv6_address\"><\/span>Removing an additional IPv6 address<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>The removal of an IPv6 address is quite simple, you just need to remove the IP from the configuration file and apply the changes using the same command: <code>netplan apply<\/code>.<\/p>\n\n\n\n<p>Lastly, you can check out our guide if you&#8217;re having trouble\u00a0<a href=\"https:\/\/black.host\/hc\/dns\/what-is-an-ip-address#Finding_Your_Public_IP_Address\" target=\"_blank\" rel=\"noreferrer noopener\">finding your IP address<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to another one of our Ubuntu guides. This guide will show you how to manually configure a static IPv6 address on your Ubuntu 22.04 VPS server. Adding a static IPv6 address on Ubuntu 22.04 By default, Ubuntu 22.04 comes with out-of-the-box support for IPv6, so the only thing you will need to do is [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":822,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[215,7],"tags":[169,167,173],"class_list":["post-495","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ipv6","category-vps-hosting","tag-netplan","tag-networking","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Enabling IPv6 on Ubuntu 22.04 with Netplan - Knowledge Base | BlackHOST<\/title>\n<meta name=\"description\" content=\"With the help of this guide, you can manually set up a static IPv6 address on your Ubuntu 22.04 VPS server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enabling IPv6 on Ubuntu 22.04 with Netplan\" \/>\n<meta property=\"og:description\" content=\"With the help of this guide, you can manually set up a static IPv6 address on your Ubuntu 22.04 VPS server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base | BlackHOST\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/BlackH0ST\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-19T12:36:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-15T16:37:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Izumo Nakamura\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@_blackhost\" \/>\n<meta name=\"twitter:site\" content=\"@_blackhost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Izumo Nakamura\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\"},\"author\":{\"name\":\"Izumo Nakamura\",\"@id\":\"https:\/\/black.host\/hc\/#\/schema\/person\/cbf350b1a4de6db8944e4738e793c15a\"},\"headline\":\"Enabling IPv6 on Ubuntu 22.04 with Netplan\",\"datePublished\":\"2022-09-19T12:36:26+00:00\",\"dateModified\":\"2024-11-15T16:37:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\"},\"wordCount\":409,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/black.host\/hc\/#organization\"},\"image\":{\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png\",\"keywords\":[\"netplan\",\"networking\",\"ubuntu\"],\"articleSection\":[\"IPv6\",\"VPS Hosting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\",\"url\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\",\"name\":\"Enabling IPv6 on Ubuntu 22.04 with Netplan - Knowledge Base | BlackHOST\",\"isPartOf\":{\"@id\":\"https:\/\/black.host\/hc\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png\",\"datePublished\":\"2022-09-19T12:36:26+00:00\",\"dateModified\":\"2024-11-15T16:37:49+00:00\",\"description\":\"With the help of this guide, you can manually set up a static IPv6 address on your Ubuntu 22.04 VPS server.\",\"breadcrumb\":{\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage\",\"url\":\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png\",\"contentUrl\":\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png\",\"width\":1200,\"height\":675},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/black.host\/hc\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Enabling IPv6 on Ubuntu 22.04 with Netplan\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/black.host\/hc\/#website\",\"url\":\"https:\/\/black.host\/hc\/\",\"name\":\"Knowledge Base | BlackHOST\",\"description\":\"Knowledge Base\",\"publisher\":{\"@id\":\"https:\/\/black.host\/hc\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/black.host\/hc\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/black.host\/hc\/#organization\",\"name\":\"BlackHOST\",\"url\":\"https:\/\/black.host\/hc\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/black.host\/hc\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2020\/05\/text.png\",\"contentUrl\":\"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2020\/05\/text.png\",\"width\":1200,\"height\":143,\"caption\":\"BlackHOST\"},\"image\":{\"@id\":\"https:\/\/black.host\/hc\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/BlackH0ST\/\",\"https:\/\/x.com\/_blackhost\",\"https:\/\/www.youtube.com\/c\/BlackHOST\",\"https:\/\/www.linkedin.com\/company\/blackhost\",\"https:\/\/www.instagram.com\/_blackhost\/\",\"https:\/\/ch.pinterest.com\/BlackH0ST\/\",\"https:\/\/mastodon.social\/@blackhost\",\"https:\/\/primal.net\/BlackHOST\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/black.host\/hc\/#\/schema\/person\/cbf350b1a4de6db8944e4738e793c15a\",\"name\":\"Izumo Nakamura\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/04148cf20a68240a1e5215299e4b302f1d511ca684ea28af983404053a2e1fda?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/04148cf20a68240a1e5215299e4b302f1d511ca684ea28af983404053a2e1fda?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/04148cf20a68240a1e5215299e4b302f1d511ca684ea28af983404053a2e1fda?s=96&r=g\",\"caption\":\"Izumo Nakamura\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Enabling IPv6 on Ubuntu 22.04 with Netplan - Knowledge Base | BlackHOST","description":"With the help of this guide, you can manually set up a static IPv6 address on your Ubuntu 22.04 VPS server.","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:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/","og_locale":"en_US","og_type":"article","og_title":"Enabling IPv6 on Ubuntu 22.04 with Netplan","og_description":"With the help of this guide, you can manually set up a static IPv6 address on your Ubuntu 22.04 VPS server.","og_url":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/","og_site_name":"Knowledge Base | BlackHOST","article_publisher":"https:\/\/www.facebook.com\/BlackH0ST\/","article_published_time":"2022-09-19T12:36:26+00:00","article_modified_time":"2024-11-15T16:37:49+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png","type":"image\/png"}],"author":"Izumo Nakamura","twitter_card":"summary_large_image","twitter_creator":"@_blackhost","twitter_site":"@_blackhost","twitter_misc":{"Written by":"Izumo Nakamura","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#article","isPartOf":{"@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/"},"author":{"name":"Izumo Nakamura","@id":"https:\/\/black.host\/hc\/#\/schema\/person\/cbf350b1a4de6db8944e4738e793c15a"},"headline":"Enabling IPv6 on Ubuntu 22.04 with Netplan","datePublished":"2022-09-19T12:36:26+00:00","dateModified":"2024-11-15T16:37:49+00:00","mainEntityOfPage":{"@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/"},"wordCount":409,"commentCount":0,"publisher":{"@id":"https:\/\/black.host\/hc\/#organization"},"image":{"@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage"},"thumbnailUrl":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png","keywords":["netplan","networking","ubuntu"],"articleSection":["IPv6","VPS Hosting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/","url":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/","name":"Enabling IPv6 on Ubuntu 22.04 with Netplan - Knowledge Base | BlackHOST","isPartOf":{"@id":"https:\/\/black.host\/hc\/#website"},"primaryImageOfPage":{"@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage"},"image":{"@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage"},"thumbnailUrl":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png","datePublished":"2022-09-19T12:36:26+00:00","dateModified":"2024-11-15T16:37:49+00:00","description":"With the help of this guide, you can manually set up a static IPv6 address on your Ubuntu 22.04 VPS server.","breadcrumb":{"@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#primaryimage","url":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png","contentUrl":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2022\/09\/495.png","width":1200,"height":675},{"@type":"BreadcrumbList","@id":"https:\/\/black.host\/hc\/vps-hosting\/enabling-ipv6-on-ubuntu-22-04-with-netplan\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/black.host\/hc\/"},{"@type":"ListItem","position":2,"name":"Enabling IPv6 on Ubuntu 22.04 with Netplan"}]},{"@type":"WebSite","@id":"https:\/\/black.host\/hc\/#website","url":"https:\/\/black.host\/hc\/","name":"Knowledge Base | BlackHOST","description":"Knowledge Base","publisher":{"@id":"https:\/\/black.host\/hc\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/black.host\/hc\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/black.host\/hc\/#organization","name":"BlackHOST","url":"https:\/\/black.host\/hc\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/black.host\/hc\/#\/schema\/logo\/image\/","url":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2020\/05\/text.png","contentUrl":"https:\/\/black.host\/hc\/wp-content\/uploads\/sites\/3\/2020\/05\/text.png","width":1200,"height":143,"caption":"BlackHOST"},"image":{"@id":"https:\/\/black.host\/hc\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/BlackH0ST\/","https:\/\/x.com\/_blackhost","https:\/\/www.youtube.com\/c\/BlackHOST","https:\/\/www.linkedin.com\/company\/blackhost","https:\/\/www.instagram.com\/_blackhost\/","https:\/\/ch.pinterest.com\/BlackH0ST\/","https:\/\/mastodon.social\/@blackhost","https:\/\/primal.net\/BlackHOST"]},{"@type":"Person","@id":"https:\/\/black.host\/hc\/#\/schema\/person\/cbf350b1a4de6db8944e4738e793c15a","name":"Izumo Nakamura","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/04148cf20a68240a1e5215299e4b302f1d511ca684ea28af983404053a2e1fda?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/04148cf20a68240a1e5215299e4b302f1d511ca684ea28af983404053a2e1fda?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/04148cf20a68240a1e5215299e4b302f1d511ca684ea28af983404053a2e1fda?s=96&r=g","caption":"Izumo Nakamura"}}]}},"acf":[],"lang":"en","translations":{"en":495},"amp_enabled":true,"pll_sync_post":[],"_links":{"self":[{"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/posts\/495","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/comments?post=495"}],"version-history":[{"count":91,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/posts\/495\/revisions"}],"predecessor-version":[{"id":1170,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/posts\/495\/revisions\/1170"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/media\/822"}],"wp:attachment":[{"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/media?parent=495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/categories?post=495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/black.host\/hc\/wp-json\/wp\/v2\/tags?post=495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}