{"id":10366,"date":"2026-06-16T17:57:03","date_gmt":"2026-06-16T12:27:03","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=10366"},"modified":"2026-06-16T17:57:27","modified_gmt":"2026-06-16T12:27:27","slug":"fixing-the-dev-net-tun-error-in-an-openvz-container","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/","title":{"rendered":"Fixing the \/dev\/net\/tun Error in an OpenVZ Container"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Introduction<\/h3>\n\n\n\n<p>While setting up Container1 inside an OpenVZ container, I encountered the following error:<\/p>\n\n\n\n<p><code>ls: cannot access \/dev\/net\/tun: No such file or directory<\/code><\/p>\n\n\n\n<p>This occurs when the TUN\/TAP device is not enabled for the container. Since many networking applications rely on <code>\/dev\/net\/tun<\/code> to create virtual network interfaces, its absence can prevent services from starting correctly. This article explains the cause of the issue and the steps required to enable the TUN device and restore functionality.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Understanding the Problem<\/h3>\n\n\n\n<p>In OpenVZ environments, containers do not automatically receive access to host devices. The TUN device must be explicitly enabled by the host node administrator. If it is not enabled, applications that depend on a TUN\/TAP interface will fail to start.<\/p>\n\n\n\n<p>This issue can occur after:<br>Deployment of a new service requiring TUN\/TAP access<br>Container migrations<br>Host-level configuration changes<br>Node reboots<br>Container recreation<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The Solution<\/h3>\n\n\n\n<p>The fix must be applied on the OpenVZ host node, not inside the container.<\/p>\n\n\n\n<p>Enable TUN support using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vzctl set &lt;CTID> --devnodes net\/tun:rw --save\nvzctl set &lt;CTID> --devices c:10:200:rw --save\nvzctl restart &lt;CTID><\/code><\/pre>\n\n\n\n<p>Replace <strong>&lt;CTID><\/strong> with your actual container ID.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What These Commands Do<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Enable the TUN Device Node<\/strong>: <code>vzctl set &lt;CTID> --devnodes net\/tun:rw --save<\/code> \u2014 This allows the container to access \/dev\/net\/tun with read and write permissions.<\/li>\n\n\n\n<li><strong>Allow the TUN Character Device<\/strong>: <code>vzctl set &lt;CTID> --devices c:10:200:rw --save<\/code> \u2014 This grants access to the Linux TUN\/TAP character device (major number 10, minor number 200).<\/li>\n\n\n\n<li><strong>Restart the Container<\/strong>: <code>vzctl restart <\/code>&lt;CTID>\u2014 A restart is required for the changes to take effect.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Verifying the Fix<\/h3>\n\n\n\n<p>After the container restarts, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls -l \/dev\/net\/tun<\/code><\/pre>\n\n\n\n<p>Expected output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>crw-rw-rw- 1 root root 10, 200 ... \/dev\/net\/tun<\/code><\/pre>\n\n\n\n<p>You can also test the device using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/dev\/net\/tun<\/code><\/pre>\n\n\n\n<p>The message &#8216;File descriptor in bad state&#8217; is normal and confirms that the TUN device is present and functioning correctly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Additional Host Verification<\/h3>\n\n\n\n<p>If the problem persists, verify that the TUN kernel module is loaded on the host:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>lsmod | grep tun<\/code><\/pre>\n\n\n\n<p>If no output is returned, load the module using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>modprobe tun<\/code><\/pre>\n\n\n\n<p>Then restart the container and test again.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>The <code>\/dev\/net\/tun: No such file or directory<\/code> error is a common issue in OpenVZ containers when TUN device access has not been enabled. Fortunately, the solution is straightforward once you know that the TUN device must be enabled at the host level.<\/p>\n\n\n\n<p>By granting the required device permissions and restarting the container, <strong>Container1<\/strong> can successfully create tunnel interfaces and operate normally. Understanding how OpenVZ handles device access can help administrators quickly diagnose and resolve similar networking and container-related issues in the future.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction While setting up Container1 inside an OpenVZ container, I encountered the following error: ls: cannot access \/dev\/net\/tun: No such file or directory This occurs when the TUN\/TAP device is not enabled for the container. Since many networking applications rely on \/dev\/net\/tun to create virtual network interfaces, its absence can&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Fixing the \/dev\/net\/tun Error in an OpenVZ Container<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":532,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":{"0":"post-10366","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction While setting up Container1 inside an OpenVZ container, I encountered the following error: ls: cannot access \/dev\/net\/tun: No such file or directory This occurs when the TUN\/TAP device is not enabled for the container. Since many networking applications rely on \/dev\/net\/tun to create virtual network interfaces, its absence can&hellip; Continue Reading Fixing the \/dev\/net\/tun Error in an OpenVZ Container\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-16T12:27:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-16T12:27:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"thiyagarajan V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"thiyagarajan V\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/\"},\"author\":{\"name\":\"thiyagarajan V\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/74f51f35c7a7748db459b46c7840def4\"},\"headline\":\"Fixing the \\\/dev\\\/net\\\/tun Error in an OpenVZ Container\",\"datePublished\":\"2026-06-16T12:27:03+00:00\",\"dateModified\":\"2026-06-16T12:27:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/\"},\"wordCount\":375,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-06-16T12:27:03+00:00\",\"dateModified\":\"2026-06-16T12:27:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/fixing-the-dev-net-tun-error-in-an-openvz-container\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fixing the \\\/dev\\\/net\\\/tun Error in an OpenVZ Container\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/74f51f35c7a7748db459b46c7840def4\",\"name\":\"thiyagarajan V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g\",\"caption\":\"thiyagarajan V\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/thiyagarajan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction While setting up Container1 inside an OpenVZ container, I encountered the following error: ls: cannot access \/dev\/net\/tun: No such file or directory This occurs when the TUN\/TAP device is not enabled for the container. Since many networking applications rely on \/dev\/net\/tun to create virtual network interfaces, its absence can&hellip; Continue Reading Fixing the \/dev\/net\/tun Error in an OpenVZ Container","og_url":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2026-06-16T12:27:03+00:00","article_modified_time":"2026-06-16T12:27:27+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"thiyagarajan V","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"thiyagarajan V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/"},"author":{"name":"thiyagarajan V","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/74f51f35c7a7748db459b46c7840def4"},"headline":"Fixing the \/dev\/net\/tun Error in an OpenVZ Container","datePublished":"2026-06-16T12:27:03+00:00","dateModified":"2026-06-16T12:27:27+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/"},"wordCount":375,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/","url":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2026-06-16T12:27:03+00:00","dateModified":"2026-06-16T12:27:27+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/fixing-the-dev-net-tun-error-in-an-openvz-container\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Fixing the \/dev\/net\/tun Error in an OpenVZ Container"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/74f51f35c7a7748db459b46c7840def4","name":"thiyagarajan V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g","caption":"thiyagarajan V"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/thiyagarajan\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2Hc","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/10366","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/532"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=10366"}],"version-history":[{"count":3,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/10366\/revisions"}],"predecessor-version":[{"id":10371,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/10366\/revisions\/10371"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=10366"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=10366"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=10366"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}