{"id":26834,"date":"2026-09-16T10:50:36","date_gmt":"2026-09-16T10:50:36","guid":{"rendered":"https:\/\/netguide.io\/smart-home\/home-assistant-docker-fixing-mdns-on-alpine-linux\/"},"modified":"2026-09-16T10:50:37","modified_gmt":"2026-09-16T10:50:37","slug":"home-assistant-docker-fixing-mdns-on-alpine-linux","status":"publish","type":"post","link":"https:\/\/netguide.io\/smart-home\/en\/home-assistant-docker-fixing-mdns-on-alpine-linux\/","title":{"rendered":"Home Assistant Docker: Fixing mDNS on Alpine Linux"},"content":{"rendered":"<div id=\"netgu-518902623\" class=\"netgu-before-content netgu-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6258556257245998\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-6258556257245998\" \ndata-ad-slot=\"3494115342\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div><p>Anyone running <a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> as a container quickly runs into an issue with network services such as MPD or local scripts: hostnames ending in <code>.local<\/code> fail to resolve. The official Docker image is based on Alpine Linux, which uses the <code>musl<\/code> C library instead of the GNU C library and lacks native system-level support for mDNS. By configuring a DNS relay on the host and setting up proper network routing, you can easily restore this functionality.<\/p>\n\n<h2>What You Need<\/h2>\n<ul>\n  <li><a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> running as a container<\/li>\n  <li>A Linux host system with terminal access (root or sudo privileges)<\/li>\n  <li><code>dnsmasq<\/code> and <code>avahi2dns<\/code> installed on the host<\/li>\n<\/ul>\n\n<h2>1. Expose the Host&#8217;s mDNS Service to DNS<\/h2>\n<p>Because musl in Alpine Linux does not support conventional mDNS resolution via <code>nsswitch.conf<\/code>, you need to map mDNS queries through standard DNS requests. To do this, configure a helper utility like <code>avahi2dns<\/code> on a dedicated port (such as port 5354) on the host to handle requests for <code>.local<\/code> domains.<\/p>\n\n<h2>2. Configure dnsmasq as a Forwarder<\/h2>\n<p>Configure the <code>dnsmasq<\/code> service on your host to listen on an internal interface and route all queries ending in <code>.local<\/code> directly to the <code>avahi2dns<\/code> port.<\/p>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#24292e\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly># Example configuration line in dnsmasq\nserver=\/local\/127.0.0.1#5354<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A737D\"># Example configuration line in dnsmasq<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">server<\/span><span style=\"color: #F97583\">=<\/span><span style=\"color: #9ECBFF\">\/local\/127.0.0.1#5354<\/span><\/span><\/code><\/pre><\/div>\n<p><code>dnsmasq<\/code> will continue forwarding all other internet DNS queries to your regular router or upstream DNS server as usual.<\/p>\n\n<h2>3. Set Up a Macvlan Network for Docker<\/h2>\n<p>If you prefer not to run the container in host network mode or want isolated IP assignment, create a Macvlan network. This provides the <a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> container with its own virtual network interface, complete with a dedicated IP and MAC address on your local network.<\/p>\n<blockquote>Make sure the selected IP range falls outside your router&#8217;s DHCP pool to prevent address conflicts.<\/blockquote>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#24292e\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>docker network create -d macvlan \\\n  --subnet=192.168.10.0\/24 \\\n  --ip-range=192.168.10.20\/28 \\\n  --gateway=192.168.10.1 \\\n  -o parent=eth0 MacVlan_Network<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #B392F0\">docker<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">network<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">create<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">-d<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">macvlan<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">\\<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  <\/span><span style=\"color: #79B8FF\">--subnet=192.168.10.0\/24<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">\\<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  <\/span><span style=\"color: #79B8FF\">--ip-range=192.168.10.20\/28<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">\\<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  <\/span><span style=\"color: #79B8FF\">--gateway=192.168.10.1<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">\\<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  <\/span><span style=\"color: #79B8FF\">-o<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">parent=eth0<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">MacVlan_Network<\/span><\/span><\/code><\/pre><\/div>\n<p>Adjust the subnet, interface (<code>eth0<\/code>), and gateway to match your specific network environment.<\/p>\n\n<h2>4. Set the DNS Address in the Home Assistant Container<\/h2>\n<p>Assign the IP address of the host&#8217;s DNS service to the container in your Docker configuration (such as your <code>docker-compose.yml<\/code>). This ensures Alpine Linux directs all name resolution queries straight to your <code>dnsmasq<\/code> server, which then hands <code>.local<\/code> addresses off to <code>avahi2dns<\/code>.<\/p>\n\n<h2>Testing the Setup<\/h2>\n<p>Open a terminal session inside your running <a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> container and ping a local network device using its <code>.local<\/code> address:<\/p>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#24292e\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>docker exec -it homeassistant ping -4 mein-geraet.local<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #B392F0\">docker<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">exec<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">-it<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">homeassistant<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">ping<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #79B8FF\">-4<\/span><span style=\"color: #E1E4E8\"> <\/span><span style=\"color: #9ECBFF\">mein-geraet.local<\/span><\/span><\/code><\/pre><\/div>\n<p>If the device&#8217;s IP address resolves and reply packets are returned, system services and integrations like MPD will once again be able to reach your local addresses without issue.<\/p>\n\n<h2>Troubleshooting<\/h2>\n<ul>\n  <li><strong>&#8220;bad address&#8221; error:<\/strong> The container cannot reach the DNS server, or the forwarding rule in <code>dnsmasq<\/code> for port 5354 is not active. Verify your <code>dnsmasq<\/code> configuration file and restart the service on the host.<\/li>\n  <li><strong>IPv6 issues:<\/strong> When running dual-stack IPv6, resolution can sometimes fail; test the connection specifically using the <code>-4<\/code> flag with the ping command.<\/li>\n  <li><strong>Avahi reflectors with custom networks:<\/strong> If you are using a custom bridge network instead of host mode, you can alternatively enable reflectors in <code>\/etc\/avahi\/avahi-daemon.conf<\/code> and restart the <code>avahi-daemon<\/code> service.<\/li>\n<\/ul>\n\n<p>This relay approach permanently works around Alpine Linux&#8217;s limitation, allowing you to run network-based media and command integrations without restrictions.<\/p>\n<p><em>Sources: <a href=\"https:\/\/community.home-assistant.io\/t\/mdns-in-ha-docker-possible\/902153\" rel=\"nofollow noopener\" target=\"_blank\">Forum: Home Assistant Community<\/a>, <a href=\"https:\/\/community.home-assistant.io\/t\/mdns-in-ha-docker-possible\/902153\" rel=\"nofollow noopener\" target=\"_blank\">community.home-assistant.io<\/a>, <a href=\"https:\/\/community.home-assistant.io\/t\/how-to-configure-the-home-assistant-docker-container-for-mdns\/379172\" rel=\"nofollow noopener\" target=\"_blank\">community.home-assistant.io<\/a><\/em><\/p><div id=\"netgu-2891165506\" class=\"netgu-after-content netgu-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6258556257245998\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-6258556257245998\" \ndata-ad-slot=\"4559785002\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>After moving Home Assistant to a Docker container, mDNS resolution for .local addresses often fails. Here is how to restore mDNS functionality.<\/p>\n","protected":false},"author":1,"featured_media":26831,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[26],"tags":[3838,3839,3808,3770,3837],"class_list":["post-26834","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-smart-home-en-en","tag-alpine-linux-en","tag-dnsmasq-en","tag-docker-en","tag-home-assistant-en","tag-mdns-en"],"uagb_featured_image_src":{"full":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw.jpg",1920,1282,false],"thumbnail":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw-150x150.jpg",150,150,true],"medium":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw-300x200.jpg",300,200,true],"medium_large":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw-768x513.jpg",768,513,true],"large":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw-1024x684.jpg",1024,684,true],"1536x1536":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw-1536x1026.jpg",1536,1026,true],"2048x2048":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/home-assistant-docker-mdns-unter-alpine-linux-reparieren-unsplash-OqtafYT5kTw.jpg",1920,1282,false]},"uagb_author_info":{"display_name":"Tobias","author_link":"https:\/\/netguide.io\/smart-home\/author\/tobias-pries\/"},"uagb_comment_info":0,"uagb_excerpt":"After moving Home Assistant to a Docker container, mDNS resolution for .local addresses often fails. Here is how to restore mDNS functionality.","brizy_media":[],"_links":{"self":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts\/26834","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/comments?post=26834"}],"version-history":[{"count":1,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts\/26834\/revisions"}],"predecessor-version":[{"id":26835,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts\/26834\/revisions\/26835"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/media\/26831"}],"wp:attachment":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/media?parent=26834"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/categories?post=26834"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/tags?post=26834"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}